Switch to compiler-tester
[mono.git] / mcs / tests / gtest-032.cs
1 // Generic interfaces
2
3 interface Foo<S>
4 {
5         void Hello (S s);
6 }
7
8 interface Bar<T,U> : Foo<U>
9 {
10         void Test (T t, U u);
11 }
12
13 class X
14 {
15         static void Test (Bar<int,string> bar)
16         {
17                 bar.Hello ("Test");
18                 bar.Test (7, "Hello");
19         }
20
21         static void Main ()
22         { }
23 }