[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1017.cs
1 // CS1017: Try statement already has an empty catch block
2 // Line: 8
3
4 class ClassMain {
5         public static void Main() {
6                 try { }
7                 catch {}
8                 catch (System.Exception) { }
9         }
10 }