Updated with review feedback.
[mono.git] / mcs / errors / cs1524.cs
1 // CS1524: Unexpected symbol `return', expecting `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 }