Project
ReSharper
Priority
Show-stopper
Type
Bug
Fix versions
2.0.1
State
Fixed
Assignee
Andrey Simanovsky
Subsystem
Quick Fixes
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Andrey Simanovsky
    5 years ago (05 Aug 2006 03:10)
  • Updated by   Andrey Simanovsky
    5 years ago (09 Sep 2006 13:29)
  • Jira: RSRP-6693
    (history, comments)
 
RSRP-6693 QF for inaccessible base constructor
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
To do: make base constructor protected/protected internal depending on the situation.
Example:
Before:
class C
{
private C() {}
}
class D : C
{
public D(){caret}{}
}
After:
class C
{
protected C() {}
}
class D : C
{
public D(){caret}{}
}


Issue was closed
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Andrey Simanovsky
  Andrey Simanovsky
07 Aug 2006 18:39
5 years ago
Re: #6693- QF for inaccessible base constructor
The quickfix changes class acess rights instead of constructor ones!