blob: 8a0f3666506f53c7348b6ee61eb3826ffc96e2fe [file] [log] [blame]
class C2 extends C {
void method() {
}
}
class Usage {
{
new C().method();
new C2().method();
}
}