[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0023-8.cs
bloba74507f3f77da6cf8372ec227a4011345f322d68
1 // CS0023: The `+' operator cannot be applied to operand of type `X'
2 // Line : 6
4 class X {
5 static void Foo (object o)
9 static void Main () {
10 Foo (+(X)null);