Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0411-2.cs
1 // CS0411: The type arguments for method `Test<float>.Foo<V,W>(V, V)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 15
3
4 class Test<A>
5 {
6         public void Foo<V,W> (V v, V w)
7         { }
8 }
9
10 class X
11 {
12         static void Main ()
13         {
14                 Test<float> test = new Test<float> ();
15                 test.Foo (8, 9);
16         }
17 }
18