| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Andrey Simanovsky |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
2.0.2
|
| Fixed in build |
Next build |
| Fixed in build |
264
|
RSRP-29532 |
Bad context action |
|
|
class Stuff
{
bool Foo()
{
return base.Equals(null); // Use equality operator
}
}
class Stuff
{
bool Foo()
{
return base == null; // error CS0175: Use of keyword 'base' is not valid in this context
}
}