view run/i/ifloat_05_A.d @ 740:a14f98c3ae83

catch-up commit of bug reports
author thomask
date Sat, 12 Nov 2005 17:57:06 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
// @date@	2005-11-12
// @uri@	news:tk-18a2189c960032901deaef67@birke.kuehne.cn

module dstress.run.i.ifloat_05_A;

int main(){
	const ifloat a = 1.0fi;

	static assert(a.im == 1.0f);
	static assert(a.re == 0.0f);

	return 0;
}