svn path=/branches/mono-1-1-9/mcs/; revision=51212
[mono.git] / mcs / tests / test-317.cs
1 // Compiler options: /warn:4 /warnaserror
2 interface IFoo
3 {
4         void Test (int t);
5 }
6
7 interface IBar : IFoo
8 {
9         new int Test (int t);
10 }
11
12 class X
13 {
14         static void Main ()
15         { }
16 }