diff run/opPreInc_11.d @ 452:8c1ae5dd51b0

fixed test cases(names)
author thomask
date Tue, 19 Apr 2005 11:40:22 +0000
parents b35781291678
children 80e1b85295b3
line wrap: on
line diff
--- a/run/opPreInc_11.d	Tue Apr 19 04:05:27 2005 +0000
+++ b/run/opPreInc_11.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_11;
 
-import std.stdio;
+void dummy(...){
+}
 
 int main() {
 	real x = 9l;
-	writefln(x);
-	writefln(++x);
+	dummy(x);
+	real y=++x;
+	assert(y==10l);
 	assert(x==10l);
 	return 0;
 }