Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makeVarargParameterLast/beforeSimple.java
Bas Leijdekkers 7980952817 Java: Add quick fix for "Vararg record component must be the last in the list" (IDEA-316182)
GitOrigin-RevId: f172229f06d5d21f0fcdcdc396931cd2867ac6c7
2023-03-28 12:31:57 +00:00

7 lines
109 B
Java

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