mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
14 lines
248 B
Java
14 lines
248 B
Java
// "Bring 'int i' into scope" "true-preview"
|
|
class a {
|
|
void foo (int y) {
|
|
int i;
|
|
while (y != 0) {
|
|
{
|
|
{
|
|
i = 0;
|
|
}
|
|
}
|
|
}
|
|
<caret>i = 0;
|
|
}
|
|
} |