mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
275 B
Java
12 lines
275 B
Java
// "Join declaration and assignment" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
void foo() {
|
|
/*comment 1*/
|
|
bar();
|
|
// comment A
|
|
/*comment B*/
|
|
//comment 4
|
|
int /*comment 2*/ n /*comment 3*/ = 1; // comment C
|
|
}
|
|
void bar(){}
|
|
} |