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