Files
2024-12-18 18:05:29 +00:00

11 lines
251 B
Java

// inherit from final
public class a extends <error descr="Cannot inherit from final class 'ff'">ff</error> {
void f() {
Object o = new <error descr="Cannot inherit from final class 'ff'">ff</error>() { void gg(){} };
}
}
final class ff {
}