cleol
[mcs.git] / tests / gtest-031-lib.cs
blob50634094f84c91b98e587c4cbf5b4b8f7665c24b
1 // Compiler options: -t:library
3 public class Foo<T>
5 public void Hello (T t)
6 { }
9 public class Bar<T,U> : Foo<U>
11 public void Test (T t, U u)
12 { }