[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs1015.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 () {}
10     }
11 }
12