Add new error
authorMiguel de Icaza <miguel@gnome.org>
Fri, 18 Jan 2002 02:10:10 +0000 (02:10 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 18 Jan 2002 02:10:10 +0000 (02:10 -0000)
svn path=/trunk/mcs/; revision=2041

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

diff --git a/mcs/errors/cs1524.cs b/mcs/errors/cs1524.cs
new file mode 100755 (executable)
index 0000000..b43976c
--- /dev/null
@@ -0,0 +1,15 @@
+// cs1524.cs: expected catch or finally
+// Line: 12
+
+namespace Test {
+        public class Test {
+                public static int Main () {
+                        int a;
+                        try {
+                                a = 1;
+                        }
+
+                        return 0;
+                }
+        }
+}