No parser catch type check.
[mono.git] / mcs / errors / cs1015-2.cs
diff --git a/mcs/errors/cs1015-2.cs b/mcs/errors/cs1015-2.cs
deleted file mode 100755 (executable)
index bd91c13..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// CS1015: A type that derives from `System.Exception', `object', or `string' expected
-// Line: 9
-
-class Test
-{
-    public static void Main ()
-    {
-       try {}
-       catch (int[]) {}
-    }
-}
-