mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 05:50:53 +07:00
14 lines
240 B
Java
14 lines
240 B
Java
// "Bring 'int i' into Scope" "true"
|
|
class a {
|
|
void foo (int y) {
|
|
int i;
|
|
while (y != 0) {
|
|
{
|
|
{
|
|
i = 0;
|
|
}
|
|
}
|
|
}
|
|
<caret>i = 0;
|
|
}
|
|
} |