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