mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
22 lines
330 B
D
22 lines
330 B
D
module interface7;
|
|
|
|
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);
|
|
}
|