Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-097.cs
1 public interface IFoo
2 {
3         void Test<T> ();
4
5         void Test<U,V> ();
6 }
7
8 public class Foo : IFoo
9 {
10         void IFoo.Test<X> ()
11         { }
12
13         void IFoo.Test<Y,Z> ()
14         { }
15 }
16
17 public interface IBar<T>
18 {
19         void Test ();
20 }
21
22 public interface IBar<U,V>
23 {
24         void Test ();
25 }
26
27 public class Bar<X,Y,Z> : IBar<X>, IBar<Y,Z>
28 {
29         void IBar<X>.Test ()
30         { }
31
32         void IBar<Y,Z>.Test ()
33         { }
34 }
35
36 class X
37 {
38         public static void Main ()
39         { }
40 }