annotate test/bug66.d @ 339:385a18242485 trunk

[svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too! Fixed issues with slice initialization (!!!) of multidimensional static arrays. Attempt to fix issue with referencing nested 'this' pointers introduced in DMD 1.033 merge.
author lindquist
date Sun, 13 Jul 2008 01:29:49 +0200
parents 5071469303d4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
100
5071469303d4 [svn r104] TONS OF FIXES.
lindquist
parents:
diff changeset
1 module bug66;
5071469303d4 [svn r104] TONS OF FIXES.
lindquist
parents:
diff changeset
2 import std.stdio;
5071469303d4 [svn r104] TONS OF FIXES.
lindquist
parents:
diff changeset
3 class Scene { string name() { return "Scene"; } }
5071469303d4 [svn r104] TONS OF FIXES.
lindquist
parents:
diff changeset
4 class Group : Scene { this () { } }
5071469303d4 [svn r104] TONS OF FIXES.
lindquist
parents:
diff changeset
5 void main() { writefln((new Group).name); }