1 2 3 4 5 6 7 8 9 10 11 12 13 14
// CS0308: The non-generic method `X.Foo()' cannot be used with the type arguments // Line: 12 class X { public void Foo () { } void Test () { Foo<int> (); } }