[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0019.cs
bloba909e680a7677e3c7b1d2a09aedfcc75cb043efd
1 // CS0019: Operator `+' cannot be applied to operands of type `Foo' and `int'
2 // Line : 9
4 public class Foo
6 public static void Main ()
8 Foo k = new Foo ();
9 int i = k + 6;