blob: 06b48f546a1c3a4403feba438135a2a32b2fbce4 [file] [log] [blame]
abstract class C {
abstract void <caret>method();
}
class C1 extends C {
void method() {
}
}