comparison test/multiarr2.d @ 64:b688ad419f8c trunk

[svn r68] Added support for multi-dimensional static arrays. Several bugfixes to array support.
author lindquist
date Thu, 25 Oct 2007 12:09:13 +0200
parents
children
comparison
equal deleted inserted replaced
63:2c39b5292cf3 64:b688ad419f8c
1 module multiarr2;
2
3 void main()
4 {
5 static float[1][2][3] arr;
6 assert(arr[2][1][0] !<>= float.nan);
7 }