11 lines
149 B
Kotlin
Vendored
11 lines
149 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
sealed class Sealed
|
|
|
|
<caret>class SubSealed : Sealed() {
|
|
val x: Int = 42
|
|
|
|
inner class Inner {
|
|
fun foo() = x
|
|
}
|
|
} |