Priority
Critical
Type
Bug 
State
Fixed 
Assignee
Alexander Zverev 
Subsystem
Quick Fixes 
Affected versions
Fixed in
Fixed in build
Next build 
Build
326
Fixed in build
910
  • Submitted by   Vladimir Reshetnikov
    3 years ago (12 Dec 2006 12:26)
  • Updated by Vladimir Reshetnikov
    18 months ago (18 Jul 2008 19:28)
  • Jira: RSRP-33262
    (history, comments)

RSRP-33262

Although assignment is marked as redundant, appropriate quick-fix is not suggested

0
using System;

class Stuff
{
	static void Foo()
	{
		int x = 1;
		int y;
		int z; 
		y = z = x; // Missing quick-fix
		Console.WriteLine(y);
		z = 1;
		Console.WriteLine(z);
	}
}


Although assignment is marked as redundant, appropriate quick-fix is not suggested

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