view run/o/odd_bug_08_H.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 08057f3259c9
children
line wrap: on
line source

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

// @author@	sugiyama <sugiyama563@msn.com>
// @date@	2006-09-06
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=326
// @desc@	[Issue 326] New: calculation bug

module dstress.run.o.odd_bug_08_H;

void check(int i){
	static int expected = 1;

	if(i != expected){
		assert(0);
	}

	expected++;
}

long x = 2, y = 1;

int main() {	
	int res = 0;
	for(int i = 0; i < 10; i++) {
		res = res + x - y;
		check(res);
	}

	return 0;
}