Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeReceiverParameter/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
83 B
Java

// "Remove receiver parameter" "true"
class X {
void foo(X x, X this<caret>) {}
}