[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0308-5.cs
blob41106dfd7f20af638a51e106b70cbfcbb6621eb2
1 // CS0308: The non-generic method `X.Foo()' cannot be used with the type arguments
2 // Line: 12
4 class X
6 public void Foo ()
10 void Test ()
12 Foo<int> ();