w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs1524.cs
blob55d0b35c795b36c596a804d602e5edd896060829
1 // CS1524: Unexpected symbol `return', expecting `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;