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