view run/t/template_51_I.d @ 1281:bb541d535405

[Issue 731] New: Positive and negative NaN in template arguments causes link conflict David Friedman <dvdfrdmn@users.sf.net> 2006-12-23 http://d.puremagic.com/issues/show_bug.cgi?id=731
author thomask
date Tue, 26 Dec 2006 10:46:38 +0000
parents
children
line wrap: on
line source

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

// @author@	David Friedman <dvdfrdmn@users.sf.net>
// @date@	2006-12-23
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=731
// @desc@	[Issue 731] New: Positive and negative NaN in template arguments causes link conflict

module dstress.run.t.template_51_I;

template T(creal v){
	const creal T = v;
}

int main(){
	creal g = T!(creal.nan) + T!(-creal.nan);
	if(g != creal.nan - creal.nan){
		assert(0);
	}

	return 0;
}