[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1551.cs
1 // CS1551: Indexers must have at least one parameter
2 // Line: 8
3
4 class Test
5 {
6     public int this []
7     {
8         set {}
9     }
10 }