mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-10 15:36:56 +07:00
9 lines
225 B
Java
9 lines
225 B
Java
// "Fix all 'Constant expression can be evaluated' problems in file" "true"
|
|
class Test {
|
|
private final String field = "field"
|
|
|
|
void test() {
|
|
String foo = "Test"<caret> + "test2";
|
|
String foo = "Test" + field;
|
|
}
|
|
} |