mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
6 lines
162 B
D
6 lines
162 B
D
module bug66;
|
|
import std.stdio;
|
|
class Scene { string name() { return "Scene"; } }
|
|
class Group : Scene { this () { } }
|
|
void main() { writefln((new Group).name); }
|