**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs1524.cs
blobb43976cc0bdc83e97a93fe584df38dc1add21588
1 // cs1524.cs: expected catch or finally
2 // Line: 12
4 namespace Test {
5 public class Test {
6 public static int Main () {
7 int a;
8 try {
9 a = 1;
12 return 0;