9 lines
114 B
Kotlin
Vendored
9 lines
114 B
Kotlin
Vendored
package seal
|
|
|
|
sealed class Sealed
|
|
|
|
object SubSealed : Sealed() {
|
|
class Nested
|
|
|
|
fun internalFunction() {}
|
|
} |