|
Project
|
ReSharper
|
|
Priority
|
Major |
|
Type
|
Bug |
|
Fix versions
|
Mirabile Futurum |
|
State
|
Open |
|
Assignee
|
Olga Lobacheva |
|
Subsystem
|
PSI |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
class A
{
protected virtual void Foo() {}
}
class B : A
{
protected override void Foo() {}
}
class C
{
void Bar()
{
new B().Foo(); //Multiple candidates here, should be ONE
}
}
|
|
|