Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / gtest-033.cs
blob90be979974c04904429621d403e8f76733cee34e
1 // Generic interfaces
3 interface Foo<R,S>
5 void Hello (R r, S s);
8 interface Bar<T,U,V> : Foo<V,float>
10 void Test (T t, U u, V v);
13 class X
15 static void Test (Bar<long,int,string> bar)
17 bar.Hello ("Test", 3.14F);
18 bar.Test (512, 7, "Hello");
21 public static void Main ()
22 { }