mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
10 lines
244 B
Java
10 lines
244 B
Java
// "Seal class" "true"
|
|
|
|
public sealed class Main { }
|
|
|
|
sealed class Direct1 extends Main {}
|
|
non-sealed class Direct2 extends Main {}
|
|
final class Direct3 extends Main {}
|
|
non-sealed class Direct4 extends Main {}
|
|
|
|
class NonDirect extends Direct1 {} |