Files
openide/java/java-tests/testData/refactoring/refactorThis/InheritanceToDelegationWithImplements.java
2020-12-30 15:56:02 +00:00

7 lines
100 B
Java

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