Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/pullUp/before6.java
2012-03-28 13:27:05 +02:00

13 lines
200 B
Java

// "Pull method 'foo' to 'Foo' and make it abstract" "true"
public class Test {
void bar() {
class Foo {}
class FooImpl extends Foo {
@Overr<caret>ide
void foo(){}
}
}
}