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