From 5ae0f3a934f25986556bcf07b2eb32a457219c14 Mon Sep 17 00:00:00 2001 From: Tomas Lindquist Olsen Date: Thu, 4 Dec 2008 16:13:40 +0100 Subject: [PATCH] ... and fixed that test case :P ... --- tests/mini/arrayinit1.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mini/arrayinit1.d b/tests/mini/arrayinit1.d index b0e02895..9a92126f 100644 --- a/tests/mini/arrayinit1.d +++ b/tests/mini/arrayinit1.d @@ -3,6 +3,6 @@ void main() 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); }