changeset 827:489f6f39ca09

... and fixed that test case :P ...
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Thu, 04 Dec 2008 16:13:40 +0100
parents ea4c6adf8b00
children 03b0c817a1a3
files tests/mini/arrayinit1.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/mini/arrayinit1.d	Thu Dec 04 16:12:47 2008 +0100
+++ b/tests/mini/arrayinit1.d	Thu Dec 04 16:13:40 2008 +0100
@@ -3,6 +3,6 @@
     float m[4][4];
 
     float* fp = &m[0][0];
-    for (int i=0; i<16; i++)
+    for (int i=0; i<16; i++,fp++)
         assert(*fp !<>= 0);
 }