[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-58.cs
blobc5ce6fc87ccd2a41bcd45f531bd5cf143a764d2a
1 // CS0019: Operator `&=' cannot be applied to operands of type `bool' and `byte?'
2 // Line: 10
4 public class Test
6 public static void Main()
8 bool b = false;
9 byte? b2 = 0;
10 b &= b2;