mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
cd624b4c86
GitOrigin-RevId: 282a1fc9cbb4ccacca545d01bfc036007d7fdfe8
8 lines
171 B
Java
8 lines
171 B
Java
// "Seal class" "true"
|
|
|
|
public sealed class Main { }
|
|
|
|
non-sealed class Direct1 extends Main {}
|
|
non-sealed class Direct2 extends Main {}
|
|
|
|
class NonDirect extends Direct1 {} |