blob: f6fc3daeb9c978ae0758ec5dd9b28567ef2a0263 [file] [log] [blame]
// "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();
}