# HG changeset patch # User thomask # Date 1164461913 0 # Node ID 3a8bc4294d510e2ba988ea519719b07784fb4669 # Parent 4e0034eebde45a1439862062dc46ffd63ee98a97 [Issue 551] New: Modulo operator works with imaginary and complex operands Matti Niemenmaa 2006-11-18 news:bug-551-3@http.d.puremagic.com/issues/ diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_A.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_B.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_C.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_D.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_E.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_F.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_G.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_H.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_I.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_J.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_K.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_03_L.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_A.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_B.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_C.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_D.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_E.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_F.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_G.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_H.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_I.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_J.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_K.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_04_L.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_A.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_B.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_C.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_D.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_E.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_F.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_G.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_H.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_I.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_J.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_K.d --- /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 +// @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; +} diff -r 4e0034eebde4 -r 3a8bc4294d51 nocompile/o/opMod_05_L.d --- /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 +// @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; +}