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-21 03:51:53 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-21 03:51:53 +0300
commit9d8d7064cb8a850f1f4ee92301dd54b05d20fd8f (patch)
treefc4d96c80200ddc2c5a18b49b77fef305b7667bb /mcs/errors/bug9.cs
parente4e598f3790448461cfc8193154dceb65b9c9ce7 (diff)
Add bug9
svn path=/trunk/mcs/; revision=1663
Diffstat (limited to 'mcs/errors/bug9.cs')
-rwxr-xr-xmcs/errors/bug9.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/errors/bug9.cs b/mcs/errors/bug9.cs
new file mode 100755
index 00000000000..f0c436a1ad0
--- /dev/null
+++ b/mcs/errors/bug9.cs
@@ -0,0 +1,7 @@
+enum A {
+a, b
+}
+
+class X {
+ const A a = A.a;
+}