| Priority |
Show-stopper |
| Type | Bug |
| State | Fixed |
| Assignee | Andrey Simanovsky |
| Subsystem | Refactoring |
| Affected versions |
No affected versions
|
| Fixed in |
2.0.2
|
| Fixed in build |
Next build |
| Fixed in build |
262
|
RSRP-28311 |
Wrong conflict is detected by pull members up |
|
|
abstract class Base
{
protected abstract void Foo();
}
class Derived : Base
{
protected override void Foo()
{
}
public void Bar()
{
Foo();
}
}