// gcs0411.cs: The type arguments for method `Foo' cannot be infered 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); } }