Files
Alexandr Suhinin 9cdcca333b IDEA-262337 refactor this: suggest push members down when there are inheritors only
GitOrigin-RevId: b214655cfcb043081116cbb28c47dccc053a5560
2021-02-17 22:25:47 +00:00

7 lines
86 B
Java

class Parent {
void test<caret>(){}
}
class Child extends Parent {
void foo(){}
}