diff test/bug51.d @ 102:027b8d8b71ec trunk

[svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up. Basically it tries to do the following in order: Resolve types, Declare symbols, Create constant initializers, Apply initializers, Generate functions bodies. ClassInfo is now has the most useful(biased?) members working. Probably other stuf...
author lindquist
date Sun, 18 Nov 2007 06:52:57 +0100
parents 70d6113eeb8c
children fd7ad91fd713
line wrap: on
line diff
--- a/test/bug51.d	Fri Nov 16 10:01:24 2007 +0100
+++ b/test/bug51.d	Sun Nov 18 06:52:57 2007 +0100
@@ -1,5 +1,7 @@
 module bug51;
 const ubyte[3] arr1 = 0;
 const ubyte[3] arr2 = [0];
-const ubyte[3] arr3 = [0:1];
-void main() {}
+const ubyte[3] arr3 = [1:1];
+void main()
+{
+}