blob: c5ce6fc87ccd2a41bcd45f531bd5cf143a764d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0019: Operator `&=' cannot be applied to operands of type `bool' and `byte?'
// Line: 10
public class Test
{
public static void Main()
{
bool b = false;
byte? b2 = 0;
b &= b2;
}
}
|