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

13 lines
209 B
Java

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