[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0155-3.cs
1 // CS0155: The type caught or thrown must be derived from System.Exception
2 // Line: 9
3
4 class Test
5 {
6     public static void Main ()
7     {
8         try {}
9         catch (int[]) {}
10     }
11 }
12