| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Olga Lobacheva |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.1
|
| Fixed in build |
Next build |
| Build |
326
|
RSRP-33809 |
False error report: cannot convert source type 'string' to target type 'byte?' |
|
|
internal class A
{
private static void F()
{
byte? b = 0;
b += null; // False error report: cannot convert source type 'string' to target type 'byte?'
}
}