diff nocompile/ptr_07.d @ 570:32f7f8ce5e51

updated "===" -> "is" and "!==" to "!(...===...)"
author thomask
date Wed, 08 Jun 2005 17:49:15 +0000
parents f87ba6507260
children
line wrap: on
line diff
--- a/nocompile/ptr_07.d	Wed Jun 08 17:25:48 2005 +0000
+++ b/nocompile/ptr_07.d	Wed Jun 08 17:49:15 2005 +0000
@@ -9,7 +9,7 @@
 int main(){
 	Object** pointer;
 
-	assert(pointer.ptr === null);
+	assert(pointer.ptr is null);
 
 	return 0;
 }