view run/real_22.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
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;
}