changeset 1625:4e908dadd51c

modulo operations with complex numbers are allowed
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 14:59:13 +0100
parents 16361129bf5f
children e160bfec54d5
files compile/o/opMod_03_A.d compile/o/opMod_03_B.d compile/o/opMod_03_C.d compile/o/opMod_03_D.d compile/o/opMod_03_E.d compile/o/opMod_03_F.d compile/o/opMod_03_G.d compile/o/opMod_03_H.d compile/o/opMod_03_I.d compile/o/opMod_03_J.d compile/o/opMod_03_K.d compile/o/opMod_03_L.d compile/o/opMod_04_A.d compile/o/opMod_04_B.d compile/o/opMod_04_C.d compile/o/opMod_04_D.d compile/o/opMod_04_E.d compile/o/opMod_04_F.d compile/o/opMod_04_G.d compile/o/opMod_04_H.d compile/o/opMod_04_I.d compile/o/opMod_04_J.d compile/o/opMod_04_K.d compile/o/opMod_04_L.d compile/o/opMod_05_A.d compile/o/opMod_05_B.d compile/o/opMod_05_C.d compile/o/opMod_05_D.d compile/o/opMod_05_E.d compile/o/opMod_05_F.d compile/o/opMod_05_G.d compile/o/opMod_05_H.d compile/o/opMod_05_I.d compile/o/opMod_05_J.d compile/o/opMod_05_K.d compile/o/opMod_05_L.d 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 72 files changed, 684 insertions(+), 684 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/o/opMod_03_A.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_B.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_C.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_D.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_E.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_F.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_G.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_H.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_I.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_J.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_K.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_03_L.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_A.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_B.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_C.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_D.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_E.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_F.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_G.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_H.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_I.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_J.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_K.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_04_L.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_A.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_B.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_C.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_D.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_E.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_F.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_G.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_H.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_I.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_J.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_K.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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/compile/o/opMod_05_L.d	Thu Jan 06 14:59:13 2011 +0100
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Matti Niemenmaa <deewiant@gmail.com>
+// @date@	2006-11-18
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
+// @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;
+}
--- a/nocompile/o/opMod_03_A.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_B.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_C.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_D.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_E.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_F.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_G.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_H.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_I.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_J.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_K.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_03_L.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_A.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_B.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_C.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_D.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_E.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_F.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_G.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_H.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_I.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_J.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_K.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_04_L.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_A.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_B.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_C.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_D.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_E.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_F.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_G.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_H.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_I.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_J.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_K.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}
--- a/nocompile/o/opMod_05_L.d	Thu Jan 06 14:25:32 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Matti Niemenmaa <deewiant@gmail.com>
-// @date@	2006-11-18
-// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=551
-// @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;
-}