view nocompile/float_litaeral_dec_09.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 9ac5baf9ac69
children e38919011244
line wrap: on
line source

// this is illegal otherwise 1..0 would be interpeted as 1.0
module dstress.nocompile.float_literal_dec_09;

int main(){
	float f = .0 ;
	return 0;
}