annotate test/bug51.d @ 100:5071469303d4 trunk

[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! :)
author lindquist
date Fri, 16 Nov 2007 08:21:47 +0100
parents 70d6113eeb8c
children 027b8d8b71ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
88
058d3925950e [svn r92] Fixed support for statically initialized unions. lots of bugfixes as cleanups too.
lindquist
parents:
diff changeset
1 module bug51;
92
70d6113eeb8c [svn r96] Updated to DMD 1.023.
lindquist
parents: 88
diff changeset
2 const ubyte[3] arr1 = 0;
70d6113eeb8c [svn r96] Updated to DMD 1.023.
lindquist
parents: 88
diff changeset
3 const ubyte[3] arr2 = [0];
70d6113eeb8c [svn r96] Updated to DMD 1.023.
lindquist
parents: 88
diff changeset
4 const ubyte[3] arr3 = [0:1];
70d6113eeb8c [svn r96] Updated to DMD 1.023.
lindquist
parents: 88
diff changeset
5 void main() {}