annotate test/bug51.d @ 104:4d1e9eb001e0 trunk

[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.
author lindquist
date Mon, 19 Nov 2007 02:58:58 +0100
parents 027b8d8b71ec
children fd7ad91fd713
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];
102
027b8d8b71ec [svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up.
lindquist
parents: 92
diff changeset
4 const ubyte[3] arr3 = [1:1];
027b8d8b71ec [svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up.
lindquist
parents: 92
diff changeset
5 void main()
027b8d8b71ec [svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up.
lindquist
parents: 92
diff changeset
6 {
027b8d8b71ec [svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up.
lindquist
parents: 92
diff changeset
7 }