view run/f/float_literal_dec_11.d @ 1472:22767ec83a24

[Issue 932] static foreach in second template instantiation uses wrong tupleof Frits van Bommel <fvbommel@wxs.nl> 2007-02-06 http://d.puremagic.com/issues/show_bug.cgi?id=932
author thomask
date Thu, 05 Apr 2007 16:36:53 +0000
parents 97f5024add8c
children
line wrap: on
line source

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

module dstress.run.f.float_literal_dec_11;

int main(){
	float f=3.40282e+38; // ~~ float.max
	assert(f<f.max);
	assert(f>3e+38);
	return 0;
}