view run/bug_elfobj_1251_A.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 1e6afb94ce6d
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Ben Hinkle <bhinkle4@juno.com>
// @date@	2004-12-09
// @uri@	news:cp86l0$106o$2@digitaldaemon.com
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2491

module dstress.run.bug_elfobj_1251_A;

bool foo() {
	int x;
	for (;;) {
		if (x == 0)
			return true;
		x = 1;
	}
	return false;
}

int main(){
	foo();
	return 0;
}