[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0501-2.cs
1 // CS0501: `Test.this[string].get' must have a body because it is not marked abstract, extern, or partial
2 // Line: 6
3
4 public abstract class Test
5 {
6         public string this [string key] { get; set; }
7 }