mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-26 10:29:11 +07:00
9c6aeba5b4
GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
11 lines
190 B
Java
11 lines
190 B
Java
// "Bring 'int i' into scope" "true-preview"
|
|
class a {
|
|
public void foo() {
|
|
int i;
|
|
if (true) {
|
|
i = 0;
|
|
} else {
|
|
int j = i;
|
|
}
|
|
}
|
|
} |