add ISafeSerializationData
[mcs.git] / tests / gtest-032.cs
blob1b554a5f5fcee648dc93899286d26c9c10ae03bd
1 // Generic interfaces
3 interface Foo<S>
5 void Hello (S s);
8 interface Bar<T,U> : Foo<U>
10 void Test (T t, U u);
13 class X
15 static void Test (Bar<int,string> bar)
17 bar.Hello ("Test");
18 bar.Test (7, "Hello");
21 static void Main ()
22 { }