2005-05-20 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / tests / gen-31-dll.cs
1 // Compiler options: -t:library
2
3 public class Foo<T>
4 {
5         public void Hello (T t)
6         { }
7 }
8
9 public class Bar<T,U> : Foo<U>
10 {
11         public void Test (T t, U u)
12         { }
13 }