7 lines
128 B
Kotlin
Vendored
7 lines
128 B
Kotlin
Vendored
sealed class Sealed(val value: String) {
|
|
constructor() : this("OK")
|
|
}
|
|
|
|
class Derived : Sealed()
|
|
|
|
fun box() = Derived().value |