2004-05-14 Marek Safar <marek.safar@seznam.cz>
[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 }