mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 20:41:09 +07:00
GitOrigin-RevId: 955d86aca0ceb262cee8f3ae5744856108eeb412
5 lines
106 B
Java
5 lines
106 B
Java
final class X {
|
|
X(int i) {}
|
|
}
|
|
class A extends <error descr="Cannot inherit from final 'X'">X</error> {
|
|
} |