view run/opPreInc_11.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 80e1b85295b3
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2005-04-18
// @uri@	news:d402bj$nc0$6@digitaldaemon.com

module dstress.run.opPreInc_11;

void dummy(...){
}

int main() {
	real x = 9.0L;
	dummy(x);
	real y = ++x;

	if(y != 10.0L){
		assert(0);
	}

	if(x != 10.0L){
		assert(0);
	}
	
	return 0;
}