diff run/opPreInc_06.d @ 452:8c1ae5dd51b0

fixed test cases(names)
author thomask
date Tue, 19 Apr 2005 11:40:22 +0000
parents b35781291678
children b8c0195059d9
line wrap: on
line diff
--- a/run/opPreInc_06.d	Tue Apr 19 04:05:27 2005 +0000
+++ b/run/opPreInc_06.d	Tue Apr 19 11:40:22 2005 +0000
@@ -6,16 +6,16 @@
 // @date@	2005-04-18
 // @uri@	news:d402bj$nc0$6@digitaldaemon.com
 
-// @WARNING@ direct use of Phobos
-
 module dstress.run.opPreInc_06;
 
-import std.stdio;
+void dummy(...){
+}
 
 int main() {
 	uint x = 9;
-	writefln(x);
-	writefln(++x);
+	dummy(x);
+	int y=++x;
+	assert(y==10);
 	assert(x==10);
 	return 0;
 }