blob: 56e1265fe7da32373c757df5272959b498a1c0a7 [file] [log] [blame]
// inherit from final
public class a extends <error descr="Cannot inherit from final 'ff'">ff</error> {
void f() {
Object o = new <error descr="Cannot inherit from final 'ff'">ff</error>() { void gg(){} };
}
}
final class ff {
}