diff run/associative_array_02.d @ 1559:ec5e144583ea

D1 -> D2 : 1/N
author thomask
date Sun, 19 Aug 2007 19:11:54 +0000
parents f87ba6507260
children
line wrap: on
line diff
--- a/run/associative_array_02.d	Mon Jul 23 18:47:01 2007 +0000
+++ b/run/associative_array_02.d	Sun Aug 19 19:11:54 2007 +0000
@@ -6,6 +6,8 @@
 
 int main(){
 	int[int] k;
-	assert(k.length == 0);
+	if(0 != k.length){
+		assert(0);
+	}
 	return 0;
 }