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>2004-12-02 01:09:23 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-12-02 01:09:23 +0300
commitf6b1af000785e5c751e9eac80d0c0f917e0e596d (patch)
tree2a7881f66b9734511cb425ba4537232b7f184ba6 /mcs/tests/test-323.cs
parentd8fa06570a6e17a0052655d5eb15a9f0f3e5dfd6 (diff)
New test for bug 62054
svn path=/trunk/mcs/; revision=36914
Diffstat (limited to 'mcs/tests/test-323.cs')
-rw-r--r--mcs/tests/test-323.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/tests/test-323.cs b/mcs/tests/test-323.cs
new file mode 100644
index 00000000000..76f32c90674
--- /dev/null
+++ b/mcs/tests/test-323.cs
@@ -0,0 +1,14 @@
+class X {
+ enum A : byte {
+ x, y, z
+ }
+ const A foo = A.x | A.y;
+
+ static void Main () {}
+}
+
+
+
+
+
+