[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-70.cs
bloba8a3787b6db76d82c574f05d29271c8d989528d9
1 // CS0019: Operator `&&' cannot be applied to operands of type `S?' and `S?'
2 // Line: 20
4 struct S
6 public static S operator & (S s, S i)
8 return s;
12 class C
14 public static void Main ()
16 S? s = new S ();
17 S? s2 = null;
19 var res = s && s2;