[mcs] Pending implementation of accessors cannot hide base implementation with differ...
[mono.git] / mcs / tests / gtest-098.cs
1 // Compiler options: /r:gtest-098-lib.dll
2 public class Foo : IFoo
3 {
4         void IFoo.Test<X> ()
5         { }
6
7         void IFoo.Test<Y,Z> ()
8         { }
9 }
10
11 public class Bar<X,Y,Z> : IBar<X>, IBar<Y,Z>
12 {
13         void IBar<X>.Test ()
14         { }
15
16         void IBar<Y,Z>.Test ()
17         { }
18 }
19
20 class X
21 {
22         public static void Main ()
23         { }
24 }