This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0108-2.cs
1 // cs0108-2.cs: The new keyword is required on 'Derived.Test(bool)' because it hides 'BaseInterface.Test(bool)'
2 // Line: 9
3
4 interface BaseInterface {
5         void Test (bool arg);
6 }
7
8 interface Derived : BaseInterface {
9         void Test (bool arg);
10 }