changeset 547:e482f375f716

int opMod 0
author thomask
date Thu, 19 May 2005 15:52:22 +0000
parents f0f1f142bf6d
children 72745b846f1e
files nocompile/o/opMod_01_A.d nocompile/o/opMod_01_B.d nocompile/o/opMod_01_C.d nocompile/o/opMod_01_D.d nocompile/o/opMod_01_E.d nocompile/o/opMod_01_F.d nocompile/o/opMod_01_G.d nocompile/o/opMod_01_H.d
diffstat 8 files changed, 88 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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;
--- /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;
--- /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;
--- /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;
--- /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;
--- /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;
--- /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;
--- /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;