Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makeReceiverParameterFirst/before1.java
Andrey.Cherkasov 3e579cda88 IDEA-216258 Provide fixes for the receiver should be the first parameter
GitOrigin-RevId: ff4c5fc6fa17d2d78c9ac785ce09ceb5860d29bc
2021-02-16 02:27:58 +00:00

4 lines
94 B
Java

// "Move 'this' to the begin of the list" "true"
class X {
void foo(X x, X this<caret>) {}
}