Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/splitJoinLines/beforeJoinArrayInitializer.java
T
2026-06-10 19:42:11 +00:00

8 lines
147 B
Java

// "Put array elements on one line" "true-preview"
class X {
String[] ss = new String[] {<caret>"one",
"two",
"three"};
}