[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1525-35.cs
1 // CS1525: Unexpected symbol `[', expecting `{'
2 // Line: 8
3
4 class Test
5 {
6         static void Main ()
7     {
8         var a = new [][] { };
9     }
10 }