2004-11-18 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / tests / gen-98-dll.cs
1 // Compiler options: -t:library
2
3 public interface IFoo
4 {
5         void Test<T> ();
6
7         void Test<U,V> ();
8 }
9
10 public interface IBar<T>
11 {
12         void Test ();
13 }
14
15 public interface IBar<U,V>
16 {
17         void Test ();
18 }