annotate test/bug51.d @ 109:5ab8e92611f9 trunk

[svn r113] Added initial support for associative arrays (AAs). Fixed some problems with the string runtime support functions. Fixed initialization of array of structs. Fixed slice assignment where LHS is slice but RHS is dynamic array. Fixed problems with result of assignment expressions. Fixed foreach problems with key type mismatches.
author lindquist
date Wed, 21 Nov 2007 04:13:15 +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 }