Excluded under 'TARGET_JVM' not working test.
[mono.git] / mcs / errors / gcs0411-3.cs
1 // gcs0411.cs: The type arguments for method `Foo' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 15
3
4 class Test<A,B>
5 {
6         public void Foo<V,W> (Test<A,W> x, Test<V,B> y)
7         { }
8 }
9
10 class X
11 {
12         static void Main ()
13         {
14                 Test<float,int> test = new Test<float,int> ();
15                 test.Foo (test, test);
16         }
17 }