mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-08 07:53:14 +01:00
[svn r104] TONS OF FIXES.
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! :)
This commit is contained in:
5
test/bug66.d
Normal file
5
test/bug66.d
Normal file
@@ -0,0 +1,5 @@
|
||||
module bug66;
|
||||
import std.stdio;
|
||||
class Scene { string name() { return "Scene"; } }
|
||||
class Group : Scene { this () { } }
|
||||
void main() { writefln((new Group).name); }
|
||||
Reference in New Issue
Block a user