diff run/odd_bug_02.d @ 18:33a25c1e1cfc

various corrections/by-passes of known problems
author thomask
date Fri, 08 Oct 2004 21:12:15 +0000
parents e6777053bf1c
children 5f98d4a33d49
line wrap: on
line diff
--- a/run/odd_bug_02.d	Fri Oct 08 21:11:00 2004 +0000
+++ b/run/odd_bug_02.d	Fri Oct 08 21:12:15 2004 +0000
@@ -12,12 +12,12 @@
 	}
 
 	void foo(){
-		assert(left==null);
+		assert(left is null);
 		bar();
 	}
 
 	void bar(){
-		assert(left==null);
+		assert(left is null);
 	}
 
 	int opApply(int delegate(inout int val) dg){