diff run/t/template_51_D.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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/template_51_D.d	Tue Dec 26 10:46:38 2006 +0000
@@ -0,0 +1,25 @@
+// $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_D;
+
+template T(idouble v){
+	const idouble T = v;
+}
+
+int main(){
+	idouble g = T!(idouble.nan) + T!(-idouble.nan);
+	if(g != idouble.nan - idouble.nan){
+		assert(0);
+	}
+
+	return 0;
+}
+
+