Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makeVarargParameterLast/afterSimple.java
T
2023-03-28 12:31:57 +00:00

7 lines
102 B
Java

// "Move 'i' to the end of the list" "true-preview"
class Simple {
void x(int j, int... i) {
}
}