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:
authorMarek Safar <marek.safar@gmail.com>2010-06-17 15:02:14 +0400
committerMarek Safar <marek.safar@gmail.com>2010-06-17 15:02:14 +0400
commitee29984d28c8be1917f4c19cbfdda4e4288fcb4d (patch)
tree0d43aebc3f1f0510f9206b94845ec4793b9e9ec2 /mcs/tests/test-783.cs
parent1b975aec040d53fe28fd8137ee028569d901dacd (diff)
New tests.
svn path=/trunk/mcs/; revision=159063
Diffstat (limited to 'mcs/tests/test-783.cs')
-rw-r--r--mcs/tests/test-783.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-783.cs b/mcs/tests/test-783.cs
new file mode 100644
index 00000000000..a9756d8550a
--- /dev/null
+++ b/mcs/tests/test-783.cs
@@ -0,0 +1,16 @@
+enum E { a, b }
+
+class C
+{
+ public static void Main ()
+ {
+ M ((uint) 0);
+ M ((long) 0);
+ M ((sbyte) 0);
+ M ((ulong) 0);
+ }
+
+ static void M (E e)
+ {
+ }
+} \ No newline at end of file