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
}
}