view run/f/float_28_C.d @ 1567:54833ea51c6f

r8720@birke: tk | 2007-09-30 11:34:40 +0200 [Issue 1513] try/catch/finally misbehavior on windows <braddr@puremagic.com> 2007-09-17 http://d.puremagic.com/issues/show_bug.cgi?id=1513
author thomask
date Sun, 30 Sep 2007 09:48:22 +0000
parents daef239f37cf
children
line wrap: on
line source

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

// @author@	Lionello Lunesu <lio@lunesu.com>
// @date@	2006-08-18
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=291
// @desc@	[Issue 291] assertion

module dstress.run.f.float_28_C;

int main(){
	const float r;

	static if(r == 0){
		assert(0);
	}

	static if(r != 0){
		return 0;
	}

	assert(0);
}