diff nocompile/cast_02.d @ 870:38ea1bb385b6

bit -> bool and __DSTRESS_TORTURE_BLOCK__ fixes
author thomask
date Sun, 26 Feb 2006 17:45:46 +0000
parents 6aaba08b3ca2
children 52c9e86b6486
line wrap: on
line diff
--- a/nocompile/cast_02.d	Sat Feb 25 08:30:52 2006 +0000
+++ b/nocompile/cast_02.d	Sun Feb 26 17:45:46 2006 +0000
@@ -16,9 +16,9 @@
 }
 
 int main(){
-	bit[] b;
+	bool[] b;
 	Enum e;
-	b = cast(bit[])
-		(cast(bit*)e);
+	b = cast(bool[])
+		(cast(bool*)e);
 	return 0;
 }