mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:09:07 +07:00
8 lines
156 B
Java
8 lines
156 B
Java
// "Join declaration and assignment" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
int foo() {
|
|
var <caret>a = 0;
|
|
a = 1;
|
|
return a;
|
|
}
|
|
} |