view run/o/odd_bug_08_B.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents daef239f37cf
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_B;

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

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

	expected++;
}

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

	return 0;
}