[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0108-18.cs
1 // CS0108: `IB.Foo(int)' hides inherited member `IA.Foo'. Use the new keyword if hiding was intended
2 // Line: 13
3 // Compiler options: -warnaserror
4
5 interface IA
6 {
7         bool Foo { get; }
8 }
9
10 interface IB : IA
11 {
12         new void Foo ();
13         void Foo (int a);
14 }