Add new bug and new error
authorMiguel de Icaza <miguel@gnome.org>
Thu, 20 Dec 2001 01:28:06 +0000 (01:28 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Thu, 20 Dec 2001 01:28:06 +0000 (01:28 -0000)
svn path=/trunk/mcs/; revision=1646

mcs/errors/bug6.cs [new file with mode: 0755]
mcs/errors/cs0017.cs [new file with mode: 0755]

diff --git a/mcs/errors/bug6.cs b/mcs/errors/bug6.cs
new file mode 100755 (executable)
index 0000000..ee07be9
--- /dev/null
@@ -0,0 +1,11 @@
+public class X {
+
+       public enum Blah { A }
+
+}
+
+public class Y : X {
+
+       Blah x;
+       
+}
diff --git a/mcs/errors/cs0017.cs b/mcs/errors/cs0017.cs
new file mode 100755 (executable)
index 0000000..7942594
--- /dev/null
@@ -0,0 +1,9 @@
+// cs0017.cs: Program has more than one entry point\r
+// Line: 7\r
+class X {\r
+static void Main () {}\r
+}\r
+class Y {\r
+static void Main () {\r
+}\r
+}\r