# HG changeset patch # User Moritz Warning # Date 1294322353 -3600 # Node ID 4e908dadd51cddb539707f950ee979931490de1c # Parent 16361129bf5fed8823c6b475704cdf30ab649471 modulo operations with complex numbers are allowed diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_A.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_B.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_C.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_D.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_E.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_F.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_G.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_H.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_I.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_J.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_K.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_03_L.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_A.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_B.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_C.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_D.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_E.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_F.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_G.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_H.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_I.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_J.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_K.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_04_L.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_A.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_B.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_C.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_D.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_E.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_F.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_G.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_H.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_I.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_J.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_K.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c compile/o/opMod_05_L.d --- /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 +// @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; +} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_A.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_B.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_C.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_D.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_E.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_F.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_G.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_H.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_I.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_J.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_K.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_03_L.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_A.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_B.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_C.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_D.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_E.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_F.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_G.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_H.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_I.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_J.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_K.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_04_L.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_A.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_B.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_C.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_D.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_E.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_F.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_G.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_H.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_I.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_J.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_K.d --- 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 -// @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; -} diff -r 16361129bf5f -r 4e908dadd51c nocompile/o/opMod_05_L.d --- 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 -// @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; -}