changeset 1012:2bfa2f830db5

fixed deprecated !==
author thomask
date Fri, 19 May 2006 17:46:19 +0000
parents 5b0ba71b22a9
children 7ca91547903e
files run/t/typeid_89.d
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/run/t/typeid_89.d	Fri May 19 17:45:10 2006 +0000
+++ b/run/t/typeid_89.d	Fri May 19 17:46:19 2006 +0000
@@ -11,7 +11,9 @@
 int main(){
 	Typeid t = typeid(bit);
 
-	assert(t !== null);
+	if(!t){
+		assert(0);
+	}
 
 	return 0;
 }