Added testcase for fix in rev [825]

This commit is contained in:
Tomas Lindquist Olsen
2008-12-04 16:12:47 +01:00
parent 2532856f1c
commit a5616feceb

8
tests/mini/arrayinit1.d Normal file
View File

@@ -0,0 +1,8 @@
void main()
{
float m[4][4];
float* fp = &m[0][0];
for (int i=0; i<16; i++)
assert(*fp !<>= 0);
}