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
  • Created by   Alexander Zverev
    2 years ago (05 Aug 2009 21:03)
  • Updated by   Olga Lobacheva
    4 months ago (11 Oct 2011 15:14)
  • Jira: RSRP-116751
    (history, comments)
 
RSRP-116751 Bug in overrides resolve
1
Issue is visible to: All Users
  The issue is visible to the selected user group only
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
  }
}
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Alexey Kuptsov
  Alexey Kuptsov
10 Oct 2011 22:19
4 months ago
I've made test for this issue: CSharpHighlightingTestRsrp116752.Rsrp116751