[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0019-61.cs
blobd94fadd0313616da8393b9bea40475329947b636
1 // CS0019: Operator `==' cannot be applied to operands of type `S?' and `int'
2 // Line: 15
4 struct S
6 public static bool operator != (S s, int a) { return true; }
7 public static bool operator == (S s, int a) { return false; }
10 public class C
12 public static void Main ()
14 S? s;
15 var b = s == 1;