Merge pull request #4998 from kumpera/fix_56684
[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         public static void Main ()
15         { }
16 }