view run/bug_constfold_575_L.d @ 482:64666b604c01

cfloat.min > cfloat.max David L. Davis <SpottedTiger@yahoo.com> 2005-04-24 news:d4deen$1j8c$1@digitaldaemon.com
author thomask
date Mon, 25 Apr 2005 06:16:43 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	David L. Davis <SpottedTiger@yahoo.com>
// @date@	2005-04-24
// @uri@	news:d4deen$1j8c$1@digitaldaemon.com

module dstress.run.bug_constfold_575_L;

int main(){
	ifloat a=ifloat.min;
	ifloat b=ifloat.max;
	if (a > b){
		assert(0);
	}
	return 0;
}