blob: 48b3e4b82c1945be0dff68cc2d9270246393a179 [file] [log] [blame]
class C {
void <caret>method() {
}
}
class C1 extends C {
void method() {
}
}
class Usage {
{
new C().method();
new C1().method();
}
}