[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0108-2.cs
blob239b702ac492429cbaa571e61b2dd7d5271dc8ba
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
5 interface BaseInterface {
6 void Test (bool arg);
9 interface Derived : BaseInterface {
10 void Test (bool arg);