# HG changeset patch # User thomask # Date 1116517942 0 # Node ID e482f375f716d4344f351ea2884041a73f12daae # Parent f0f1f142bf6d2ccd2f05e9285daf9afac440e4f0 int opMod 0 diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_A.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_A.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_A; + +const byte a = 2; +const byte b = 0; +const byte c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_B.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_B.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_B; + +const ubyte a = 2; +const ubyte b = 0; +const ubyte c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_C.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_C.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_C; + +const short a = 2; +const short b = 0; +const short c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_D.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_D.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_D; + +const ushort a = 2; +const ushort b = 0; +const ushort c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_E.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_E.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_E; + +const int a = 2; +const int b = 0; +const int c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_F.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_F.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_F; + +const uint a = 2; +const uint b = 0; +const uint c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_G.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_G.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_G; + +const long a = 2; +const long b = 0; +const long c = a % b; diff -r f0f1f142bf6d -r e482f375f716 nocompile/o/opMod_01_H.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/o/opMod_01_H.d Thu May 19 15:52:22 2005 +0000 @@ -0,0 +1,11 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// __DSTRESS_ELINE__ 11 + +module dstress.nocompile.o.opMod_01_H; + +const ulong a = 2; +const ulong b = 0; +const ulong c = a % b;