view run/double_07.d @ 1616:7b7967dd4203

More auto -> scope changes.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 17:14:44 +0200
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.double_07;

int main(){
	double d;
	assert(double.mant_dig>=8);
	assert(d.mant_dig==double.mant_dig);
	assert((2.3).mant_dig==double.mant_dig);
	return 0;
}