[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1929.cs
blob4679492a1fe59334fbf36671d34b2d0d0ca6aa02
1 // CS1929: Type `int' does not contain a member `Check' and the best extension method overload `C.Check(this string)' requires an instance of type `string'
2 // Line: 12
4 static class C
6 public static void Check (this string s)
10 static void Main ()
12 1.Check ();