Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/receiverParameterName/beforeInstanceMethod.java
Andrey.Cherkasov 36709d3981 [java-intentions] ReceiverParameterNameFix: change the text shown in the quick-fix popup
IDEA-273225
IJ-CR-20529

GitOrigin-RevId: d3cfbb2b3b7c8f33974085c278d158a5c6a0bbba
2022-02-17 13:20:00 +00:00

6 lines
90 B
Java

// "Replace with 'this'" "true"
class A {
class B {
void m(B A.this<caret>) {}
}
}