History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-27940
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Normal Normal
Assignee: Andrey Simanovsky
Reporter: Andrew Serebryansky
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

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

Created: 14 Aug 06 17:38   Updated: 24 Oct 06 18:12
Component/s: Quick Fixes
Fix Version/s: 2.0.2
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 255
Fixed in build: 264


 Description  « Hide
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 }

}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.