comparison test/arrays5.d @ 37:77cdca8c210f trunk

[svn r41] new'd dynamic arrays are now initialized with the element type's default initializer. initial label/goto support.
author lindquist
date Wed, 10 Oct 2007 03:38:24 +0200
parents
children 61615fa85940
comparison
equal deleted inserted replaced
36:c0967c4b2a74 37:77cdca8c210f
1 module arrays5;
2 //import std.stdio;
3 void main()
4 {
5 auto arr = new float[5];
6 arr[4] = 1f;
7 //writefln(arr);
8 assert(arr[0] !<>= 0f);
9 assert(arr[1] !<>= 0f);
10 assert(arr[2] !<>= 0f);
11 assert(arr[3] !<>= 0f);
12 assert(arr[4] == 1f);
13 }
14