[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0407-6.cs
blob1537ce967d004f0597c8fee9d3132f62edbd91c2
1 // CS0407: A method or delegate `int Program.Foo(object)' return type does not match delegate `void System.Action<dynamic>(dynamic)' return type
2 // Line: 10
4 using System;
6 class Program
8 static void Main()
10 Action<dynamic> d = Foo;
13 static int Foo (object o)
15 return 0;