2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-097.cs
blobcc748cd4a9e6cd69ecf67f1cf3ec8b9efae0b24a
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 static void Main ()
39 { }