Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/pullUp/after3.java

15 lines
237 B
Java

// "Pull method 'foo' up and make it abstract" "true"
public class Test{
void main(){
new Int(){
@Override
void foo(){
}
};
}
}
abstract class Int {
abstract void foo();
}