// CS0411: The type arguments for method `Test.Foo(V, V)' cannot be inferred from the usage. Try specifying the type arguments explicitly // Line: 15 class Test { public void Foo (V v, V w) { } } class X { static void Main () { Test test = new Test (); test.Foo (8, 9); } }