Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2007-02-02 20:58:06 +0300
committerMiguel de Icaza <miguel@gnome.org>2007-02-02 20:58:06 +0300
commitb1172574e838db626c84684f05549b56986705c0 (patch)
treeb536402ebb967249aab8391dd87ea93c94d6b8a7 /mcs/tests/test-556.cs
parent103148090539762627402375a3aa6e4a48959ea2 (diff)
Add
svn path=/trunk/mcs/; revision=72186
Diffstat (limited to 'mcs/tests/test-556.cs')
-rw-r--r--mcs/tests/test-556.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-556.cs b/mcs/tests/test-556.cs
new file mode 100644
index 00000000000..7c9442d8adf
--- /dev/null
+++ b/mcs/tests/test-556.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections;
+
+public class S
+{
+ public void Frobnikator()
+ {
+ const UInt32 SMALL_MASK = (1U << (24)) - 1;
+ const ulong BIG_MASK = ~((ulong)SMALL_MASK);
+
+ }
+
+ static void Main ()
+ {
+ }
+}