mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
12 lines
147 B
Java
12 lines
147 B
Java
// "Rename reference" "true-preview"
|
|
class c {
|
|
void foo(boolean b) {
|
|
if (b) {
|
|
int i = 0;
|
|
i++;
|
|
} else {
|
|
k++;
|
|
}
|
|
}
|
|
int k;
|
|
} |