[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1501-13.cs
blob620eb8dbfa5ee557a2d7d9990414ea53e43bd51d
1 // CS1501: No overload for method `Foo' takes `2' arguments
2 // Line: 13
4 static class C
6 public static void Foo (this string s, int d, bool b)
10 static void Main()
12 dynamic d = null;
13 "x".Foo (d);