Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makeReceiverParameterFirst/beforeThisNotThisThis.java
Andrey.Cherkasov 02e34802cf [java-highlighting] Don't suggest moving 'this' to the beginning of the list if there is already a receiver there
GitOrigin-RevId: d474d72a0fa00912a65f7ed32a85f2c2deec5e44
2021-05-12 23:24:58 +00:00

4 lines
109 B
Java

// "Move 'this' to the beginning of the list" "false"
class X {
void foo(X this, int i, X this<caret>) {}
}