Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapExpression/beforeValueofArray.java
2022-08-12 09:31:22 +00:00

9 lines
142 B
Java

// "Wrap using 'Arrays.toString()'" "true-preview"
public class Test {
void ba() {
fa(new int<caret>[10]);
}
void fa(String s){}
}