1 // CS0411: The type arguments for method `Test<float>.Foo<V>(V, V)' cannot be inferred from the usage. Try specifying the type arguments explicitly
6 public void Foo
<V
> (V v
, V w
)
14 Test
<float> test
= new Test
<float> ();
15 test
.Foo (8, "Hello World");