| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | Code Analysis |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Fixed in build |
500
|
RSRP-34637 |
Bad error underline color for property with two accessors overriding property with one accessor |
|
|
abstract class T
{
protected abstract int Q { get; }
}
class T1 : T
{
protected override int Q
{
get { throw new System.NotImplementedException(); }
}
}
set { } to the second property. The error is underlined with BLUE. As soon as I change the text inside setter (even if I undo the changes afterwards) the error highlighting has regular red color.