New test.
[mono.git] / mcs / errors / cs1524.cs
1 // cs1524.cs: Expected catch or finally
2 // Line: 12
3
4 namespace Test {
5         public class Test {
6                 public static int Main () {
7                         int a;
8                         try {
9                                 a = 1;
10                         }
11
12                         return 0;
13                 }
14         }
15 }