internal class A
{
privatestatic void F()
{
byte? b = 0;
b += null; // False error report: cannot convert source type 'string' to target type 'byte?'
}
}
Description
internal class A
{
privatestatic void F()
{
byte? b = 0;
b += null; // False error report: cannot convert source type 'string' to target type 'byte?'
}
}