| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Alexander Zverev |
| Subsystem | Quick Fixes |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build |
Next build |
| Build |
326
|
| Fixed in build |
910
|
RSRP-33262 |
Although assignment is marked as redundant, appropriate quick-fix is not suggested |
|
|
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);
}
}