comparison test/aa1.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 288fe1029e1f
children
comparison
equal deleted inserted replaced
108:288fe1029e1f 109:5ab8e92611f9
1 module aa1; 1 module aa1;
2 2
3 void main() 3 void main()
4 { 4 {
5 int[int] aai; 5 int[int] aai;
6 assert(aai is null);
7 aai[0] = 52;
8 assert(aai !is null);
9 int i = aai[0];
10 assert(i == 52);
11 aai[32] = 123;
12 int j = aai[32];
13 assert(i == 52);
14 assert(j == 123);
6 } 15 }