changeset 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 4e0034eebde4
children f41655c00b51
files nocompile/o/opMod_03_A.d nocompile/o/opMod_03_B.d nocompile/o/opMod_03_C.d nocompile/o/opMod_03_D.d nocompile/o/opMod_03_E.d nocompile/o/opMod_03_F.d nocompile/o/opMod_03_G.d nocompile/o/opMod_03_H.d nocompile/o/opMod_03_I.d nocompile/o/opMod_03_J.d nocompile/o/opMod_03_K.d nocompile/o/opMod_03_L.d nocompile/o/opMod_04_A.d nocompile/o/opMod_04_B.d nocompile/o/opMod_04_C.d nocompile/o/opMod_04_D.d nocompile/o/opMod_04_E.d nocompile/o/opMod_04_F.d nocompile/o/opMod_04_G.d nocompile/o/opMod_04_H.d nocompile/o/opMod_04_I.d nocompile/o/opMod_04_J.d nocompile/o/opMod_04_K.d nocompile/o/opMod_04_L.d nocompile/o/opMod_05_A.d nocompile/o/opMod_05_B.d nocompile/o/opMod_05_C.d nocompile/o/opMod_05_D.d nocompile/o/opMod_05_E.d nocompile/o/opMod_05_F.d nocompile/o/opMod_05_G.d nocompile/o/opMod_05_H.d nocompile/o/opMod_05_I.d nocompile/o/opMod_05_J.d nocompile/o/opMod_05_K.d nocompile/o/opMod_05_L.d
diffstat 36 files changed, 684 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_A.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
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.o.opMod_03_A;
+
+void foo(){
+	ifloat a;
+	ifloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_B.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_03_B;
+
+void foo(){
+	ifloat a;
+	float b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_C.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_03_C;
+
+void foo(){
+	float a;
+	ifloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_D.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_03_D;
+
+void foo(){
+	const ifloat a;
+	const ifloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_E.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_03_E;
+
+void foo(){
+	const float a;
+	const ifloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_F.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_03_F;
+
+void foo(){
+	const ifloat a;
+	const float b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_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_03_G;
+
+void foo(){
+	cfloat a;
+	cfloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_H.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__ 19
+
+module dstress.nocompile.o.opMod_03_H;
+
+void foo(){
+	cfloat a;
+	float b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_I.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__ 19
+
+module dstress.nocompile.o.opMod_03_I;
+
+void foo(){
+	float a;
+	cfloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_J.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__ 19
+
+module dstress.nocompile.o.opMod_03_J;
+
+void foo(){
+	const cfloat a;
+	const cfloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_K.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__ 19
+
+module dstress.nocompile.o.opMod_03_K;
+
+void foo(){
+	const float a;
+	const cfloat b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_03_L.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__ 19
+
+module dstress.nocompile.o.opMod_03_L;
+
+void foo(){
+	const cfloat a;
+	const float b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_A.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
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.o.opMod_04_A;
+
+void foo(){
+	idouble a;
+	idouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_B.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_04_B;
+
+void foo(){
+	idouble a;
+	double b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_C.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_04_C;
+
+void foo(){
+	double a;
+	idouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_D.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_04_D;
+
+void foo(){
+	const idouble a;
+	const idouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_E.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_04_E;
+
+void foo(){
+	const double a;
+	const idouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_F.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_04_F;
+
+void foo(){
+	const idouble a;
+	const double b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_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_04_G;
+
+void foo(){
+	cdouble a;
+	cdouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_H.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__ 19
+
+module dstress.nocompile.o.opMod_04_H;
+
+void foo(){
+	cdouble a;
+	double b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_I.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__ 19
+
+module dstress.nocompile.o.opMod_04_I;
+
+void foo(){
+	double a;
+	cdouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_J.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__ 19
+
+module dstress.nocompile.o.opMod_04_J;
+
+void foo(){
+	const cdouble a;
+	const cdouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_K.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__ 19
+
+module dstress.nocompile.o.opMod_04_K;
+
+void foo(){
+	const double a;
+	const cdouble b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_04_L.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__ 19
+
+module dstress.nocompile.o.opMod_04_L;
+
+void foo(){
+	const cdouble a;
+	const double b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_A.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
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.o.opMod_05_A;
+
+void foo(){
+	ireal a;
+	ireal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_B.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_05_B;
+
+void foo(){
+	ireal a;
+	real b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_C.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_05_C;
+
+void foo(){
+	real a;
+	ireal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_D.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_05_D;
+
+void foo(){
+	const ireal a;
+	const ireal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_E.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_05_E;
+
+void foo(){
+	const real a;
+	const ireal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_F.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
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opMod_05_F;
+
+void foo(){
+	const ireal a;
+	const real b;
+
+	auto x = a % b;
+}
--- /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;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_H.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__ 19
+
+module dstress.nocompile.o.opMod_05_H;
+
+void foo(){
+	creal a;
+	real b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_I.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__ 19
+
+module dstress.nocompile.o.opMod_05_I;
+
+void foo(){
+	real a;
+	creal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_J.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__ 19
+
+module dstress.nocompile.o.opMod_05_J;
+
+void foo(){
+	const creal a;
+	const creal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_K.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__ 19
+
+module dstress.nocompile.o.opMod_05_K;
+
+void foo(){
+	const real a;
+	const creal b;
+
+	auto x = a % b;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opMod_05_L.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__ 19
+
+module dstress.nocompile.o.opMod_05_L;
+
+void foo(){
+	const creal a;
+	const real b;
+
+	auto x = a % b;
+}