Files
openide/java/java-tests/testData/refactoring/refactorThis/InheritanceToDelegationWithExtends.java
Alexandr Suhinin 675afe2194 IDEA-258710 refactor this: better filtering for "Replace Inheritance with Delegate"
GitOrigin-RevId: 5af3e8f3e63d071513778759e5787fa96f89665a
2020-12-30 15:56:02 +00:00

7 lines
93 B
Java

class A { }
class <caret>B extends A {
void test() {
System.out.println();
}
}