mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
Split up declaration, constant initializer gen and definition for globals, structs, classes and functions. Improved ClassInfo support (not complete), not in vtable yet. Fixed a bunch of forward reference problems. Much more. Major commit! :)
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); }
|