mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
9 lines
158 B
Java
9 lines
158 B
Java
// "Join declaration and assignment" "false"
|
|
class C {
|
|
void foo() {
|
|
int n = 0;
|
|
bar(n);
|
|
<caret>n = 1;
|
|
}
|
|
void bar(int i){}
|
|
} |