[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0102-19.cs
1 // CS0102: The type `C' already contains a definition for `get_Foo'
2 // Line: 9
3
4 class C
5 {
6         int Foo {
7                 get { }
8         }
9         int get_Foo;
10 }