Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Andrey Simanovsky 
Subsystem
Quick Fixes 
Affected versions
Fixed in
Fixed in build
Next build 
Build
255
Fixed in build
264
  • Submitted by   Andrew Serebryansky
    3 years ago (14 Aug 2006 17:38)
  • Updated by Andrew Serebryansky
    3 years ago (24 Oct 2006 18:12)
  • Jira: RSRP-27940
    (history, comments)

RSRP-27940

Quick Fix dissappears for missing constructor when one existing constructor calls another

0
class WithQuickFix
{
private WithQuickFix(int i) {}

static void DoSomething()
{
new WithQuickFix(); // <-- quickfix to add pops up here
}
}

class WithoutQuickFix
{
private WithoutQuickFix(int i) {}

private WithoutQuickFix(string i) : this(1) {}

static void DoSomething()
{
new WithoutQuickFix(); // <-- no quickfix on this line
}

}


Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments