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

15 lines
236 B
Java

// "Pull method 'foo' to 'Foo' and make it abstract" "true"
public class Test {
void bar() {
abstract class Foo {
abstract void foo();
}
class FooImpl extends Foo {
@Override
void foo(){}
}
}
}