[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1061-17.cs
blob1e1749684b4094313f4686de3408cb35a9603c49
1 // CS1061: Type `int' does not contain a definition for `Foo' and no extension method `Foo' of type `int' could be found. Are you missing an assembly reference?
2 // Line: 11
4 using System;
6 static class C
8 static void Main ()
10 int i = 1;
11 Action a = i.Foo;
14 static void Foo (this string s)