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:28:06 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-12-20 04:28:06 +0300
commit8e683bb35dfee2eef0530636ee27ec3eb78c066a (patch)
treeef825bbd6dd5bb9b6a470a934f1ec91e768c343d /mcs/errors/bug6.cs
parent0471bf47e4e2b1026b16e232a1f6cc8b16fe9d3b (diff)
Add new bug and new error
svn path=/trunk/mcs/; revision=1646
Diffstat (limited to 'mcs/errors/bug6.cs')
-rwxr-xr-xmcs/errors/bug6.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/bug6.cs b/mcs/errors/bug6.cs
new file mode 100755
index 00000000000..ee07be98f4d
--- /dev/null
+++ b/mcs/errors/bug6.cs
@@ -0,0 +1,11 @@
+public class X {
+
+ public enum Blah { A }
+
+}
+
+public class Y : X {
+
+ Blah x;
+
+}