mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
10 lines
139 B
Java
10 lines
139 B
Java
// "Move assignment to field declaration" "true-preview"
|
|
|
|
class X {
|
|
String e, ff;
|
|
|
|
void f() {
|
|
ff <caret>= //comment
|
|
"";
|
|
}
|
|
} |