new test
authorMarek Safar <marek.safar@gmail.com>
Wed, 16 Jun 2004 17:29:27 +0000 (17:29 -0000)
committerMarek Safar <marek.safar@gmail.com>
Wed, 16 Jun 2004 17:29:27 +0000 (17:29 -0000)
svn path=/trunk/mcs/; revision=29696

mcs/errors/cs0108-10.cs [new file with mode: 0644]

diff --git a/mcs/errors/cs0108-10.cs b/mcs/errors/cs0108-10.cs
new file mode 100644 (file)
index 0000000..152a671
--- /dev/null
@@ -0,0 +1,12 @@
+// cs0108.cs: The new keyword is required on 'Derived.EE' because it hides inherited member
+// Line: 11
+
+class Base {
+       public enum EE {
+            Item
+        };
+}
+
+class Derived : Base {
+        public int EE;
+}