mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
11 lines
138 B
Java
11 lines
138 B
Java
// "Rename reference" "true"
|
|
class c {
|
|
void foo(boolean b) {
|
|
if (b) {
|
|
int i = 0;
|
|
i++;
|
|
} else {
|
|
i<caret>++;
|
|
}
|
|
}
|
|
} |