diff nocompile/o/opMod_05_G.d @ 1235:3a8bc4294d51

[Issue 551] New: Modulo operator works with imaginary and complex operands Matti Niemenmaa <deewiant@gmail.com> 2006-11-18 news:bug-551-3@http.d.puremagic.com/issues/
author thomask
date Sat, 25 Nov 2006 13:38:33 +0000
parents
children daef239f37cf
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_G.d	Sat Nov 25 13:38:33 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	news:bug-551-3@http.d.puremagic.com/issues/
+// @desc@	[Issue 551] New: Modulo operator works with imaginary and complex operands
+
+// __JSTRESS_KLINE__ 18
+
+module dstress.nocompile.o.opMod_05_G;
+
+void foo(){
+	creal a;
+	creal b;
+
+	auto x = a % b;
+}