[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0108-2.cs
1 // CS0108: `Derived.Test(bool)' hides inherited member `BaseInterface.Test(bool)'. Use the new keyword if hiding was intended
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2 -t:library
4
5 interface BaseInterface {
6         void Test (bool arg);
7 }
8
9 interface Derived : BaseInterface {
10         void Test (bool arg);
11 }