Files
ldc/test/interface7.d
Tomas Lindquist Olsen 4505b9b006 [svn r137] Many fixes towards tango.io.Console working, but not quite there yet...
In particular, assertions has been fixed to include file/line info, and much more!
2008-01-14 05:11:54 +01:00

24 lines
364 B
D

module interface7;
extern(C) int printf(char*,...);
interface I
{
}
class C : I
{
}
void main()
{
I i = new C;
ClassInfo ci = i.classinfo;
char[] name = ci.name;
printf("ci.name = %.*s\n", name.length, name.ptr);
ClassInfo cI = I.classinfo;
name = cI.name;
printf("cI.name = %.*s\n", name.length, name.ptr);
assert(ci is cI);
}