mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
disable split into decl 7/ assignment for conflicting names (IDEA-173787)
for statement induces another declaration parent where another local variable could have been declared
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Split into declaration and assignment" "false"
|
||||
class Test {
|
||||
{
|
||||
for (int i<caret>=0; i<10; i++) {
|
||||
System.out.println();
|
||||
}
|
||||
int i = 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user