[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0106-9.cs
1 // CS0106: The modifier `virtual' is not valid for this item
2 // Line: 7
3
4 class C
5 {
6         public int Foo {
7                 virtual set { }
8         }
9 }