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