diff run/associative_array_12.d @ 1559:ec5e144583ea

D1 -> D2 : 1/N
author thomask
date Sun, 19 Aug 2007 19:11:54 +0000
parents b8c0195059d9
children
line wrap: on
line diff
--- a/run/associative_array_12.d	Mon Jul 23 18:47:01 2007 +0000
+++ b/run/associative_array_12.d	Sun Aug 19 19:11:54 2007 +0000
@@ -12,6 +12,8 @@
 	int[cfloat] x;
 	cfloat d=22.0f+0.0fi;
 	x[d] = 44;
-	assert( x[d] == 44 );
+	if(44 != x[d]){
+		assert(0);
+	}
 	return 0;
 }