[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / gtest-097.cs
blob63ead2583e150b9b9dd2cbb8b0a6c2244cdfc31e
1 public interface IFoo
3 void Test<T> ();
5 void Test<U,V> ();
8 public class Foo : IFoo
10 void IFoo.Test<X> ()
11 { }
13 void IFoo.Test<Y,Z> ()
14 { }
17 public interface IBar<T>
19 void Test ();
22 public interface IBar<U,V>
24 void Test ();
27 public class Bar<X,Y,Z> : IBar<X>, IBar<Y,Z>
29 void IBar<X>.Test ()
30 { }
32 void IBar<Y,Z>.Test ()
33 { }
36 class X
38 public static void Main ()
39 { }