* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / gcs0411-3.cs
blob9b2c9bf795f52bdca7f3fd145413ad18769475da
1 // gcs0411.cs: The type arguments for method `Foo' cannot be infered from the usage. Try specifying the type arguments explicitly
2 // Line: 15
4 class Test<A,B>
6 public void Foo<V,W> (Test<A,W> x, Test<V,B> y)
7 { }
10 class X
12 static void Main ()
14 Test<float,int> test = new Test<float,int> ();
15 test.Foo (test, test);