2005-06-05 Peter Bartok <pbartok@novell.com>
[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 // 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 }