view run/bug_elfobj_1251_A.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 1e6afb94ce6d
children d3a3e0c251d8
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
// @uri@	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;
}