dlr bug
[mcs.git] / tests / gtest-309.cs
blob34aec07b0cfd63069edf5071fb357127d5894283
1 class Test<A,B>
3 public void Foo<V,W> (Test<A,W> x, Test<V,B> y)
4 { }
7 class X
9 static void Main ()
11 Test<float,int> test = new Test<float,int> ();
12 test.Foo (test, test);