mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
11 lines
239 B
Java
11 lines
239 B
Java
// 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 {
|
|
}
|