89cae6c968324db7c44cfea8f67611c8d7e2c363
[mono.git] / mcs / errors / cs1525-50.cs
1 // CS1525: Unexpected symbol `}', expecting `{' or `when'
2 // Line: 11
3
4 using System;
5
6 class MyTest
7 {
8         public static void Main (string[] args)
9         {
10                 try {
11                 } catch (Exception)
12         }
13 }