| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Ilya Ryzhenkov |
| Subsystem | Generate Action |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build |
Next build |
| Fixed in build |
918
|
RSRP-42340 |
Override shouldn't be generated for private accessor of property. |
|
|
public class Base1
{
public virtual int M
{
get { return 1; }
private set
{
}
}
}
public class B :Base1
{
// call "override inherited member" context action here here.
}