diff compile/c/cfloat_12_B.d @ 1247:d75d907a68bb

[Issue 614] New: Real and imaginary properties of complex numbers not allowed as template arguments Sean Kelly <sean@f4.ca> 2006-11-27 news:bug-614-3@http.d.puremagic.com/issues/
author thomask
date Wed, 29 Nov 2006 21:20:30 +0000
parents
children daef239f37cf
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/c/cfloat_12_B.d	Wed Nov 29 21:20:30 2006 +0000
@@ -0,0 +1,25 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Sean Kelly <sean@f4.ca>
+// @date@	2006-11-27
+// @uri@	news:bug-614-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 614] New: Real and imaginary properties of complex numbers not allowed as template arguments
+
+module dstress.compile.c.cfloat_12_B;
+
+const cfloat a = 1.0f + 2.0fi;
+
+template getRealPart(cfloat x){
+	const float getRealPart = x.re;
+}
+
+static assert(getRealPart!(a) == 1.0f);
+
+
+template getImaginaryPart(cfloat x){
+	const float getImanginaryPart = x.im;
+}
+
+static assert(getImaginaryPart!(a) == 2.0f);