view run/real_22.d @ 1572:169ba9b6cb5d

[Issue 1013] Invalid code generated for naked functions with (u)long arguments <madou@madou.org> 2007-03-01 http://d.puremagic.com/issues/show_bug.cgi?id=1013
author thomask
date Thu, 21 Feb 2008 15:18:50 +0000
parents 80e1b85295b3
children
line wrap: on
line source

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

// @author@	Derek Parnell <derek@psych.ward>
// @date@	2005-04-02
// @uri@	news:5efpfwr0e1l5$.ks45nx0xz2zf$.dlg@40tude.net

module dstress.run.real_22;

int main(){
	real f = 0.0000195L;
	
	if(typeid(typeof(0.0000195L)) != typeid(real)){
		assert(0);
	}

	if(.5L + f * 1e6L != .5L + 0.0000195L * 1e6L){
		assert(0);
	}

	return 0;
}