mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
18 lines
205 B
D
18 lines
205 B
D
module classes10;
|
|
|
|
class C
|
|
{
|
|
int i;
|
|
override char[] toString()
|
|
{
|
|
return "foobar";
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Object o = new C;
|
|
char[] s = o.toString();
|
|
assert(s == "foobar");
|
|
}
|