[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0111-20.cs
1 // CS0111: A member `C.Foo()' is already defined. Rename this member or use different parameter types
2 // Line: 12
3
4
5 public partial class C
6 {
7         partial void Foo ();
8 }
9
10 public partial class C
11 {
12         void Foo ()
13         {
14         }
15 }