Files

8 lines
149 B
Java

// "Join declaration and assignment" "GENERIC_ERROR_OR_WARNING"
class C {
void foo() {
bar();
int n = 1;
}
void bar(){}
}