mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
8 lines
197 B
Java
8 lines
197 B
Java
// "non-sealed" "true"
|
|
sealed interface Parent permits Child, Foo {}
|
|
|
|
interface OtherParent {}
|
|
|
|
non-sealed interface Foo extends Parent {}
|
|
|
|
non-sealed interface Child extends OtherParent, Parent {} |