2008-05-21 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs1015-2.cs
1 // CS1015: A type that derives from `System.Exception', `object', or `string' expected
2 // Line: 9
3
4 class Test
5 {
6     public static void Main ()
7     {
8         try {}
9         catch (int[]) {}
10     }
11 }
12