2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0108-2.cs
blob59fc1bfa7bedecbf3c0d0791a56ffde8ed7ea19a
1 // cs0108-2.cs: `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);