Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-098-lib.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 }