| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Alexander Zverev |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build | |
| Fixed in build |
900
|
RSRP-68348 |
ReSharper creates local variable in incorrect place |
|
|
void Foo()
{
// some more code
int x = 0;
switch (x)
{
case 0:
blabla = 2;
break;
case 1:
blabla = 3;
break;
default:
break;
}
}
{caret}blabla = 3;