No parser catch type check.
[mono.git] / mcs / errors / cs1015-3.cs
diff --git a/mcs/errors/cs1015-3.cs b/mcs/errors/cs1015-3.cs
deleted file mode 100644 (file)
index 57890b2..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 (bool b) {}
-    }
-}
-