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>2001-12-20 04:45:27 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-20 04:45:27 +0300
commitb031f30adea6e27a2fe8703b61554c143fc80298 (patch)
treee2964d02e371ad53da6d95e751207a8563504458 /mcs/errors/bug7.cs
parent8e683bb35dfee2eef0530636ee27ec3eb78c066a (diff)
Flush
svn path=/trunk/mcs/; revision=1647
Diffstat (limited to 'mcs/errors/bug7.cs')
-rwxr-xr-xmcs/errors/bug7.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/bug7.cs b/mcs/errors/bug7.cs
new file mode 100755
index 00000000000..e03854ab51c
--- /dev/null
+++ b/mcs/errors/bug7.cs
@@ -0,0 +1,14 @@
+public enum X :byte {
+ a, b
+}
+
+public class Y {
+
+ const X myconst = X.a;
+
+ static void Main ()
+ {
+ }
+
+}
+