Files
kotlin-fork/compiler/testData/diagnostics/tests/sealed/ExhaustiveWhenWithElse.kt
T

17 lines
330 B
Kotlin
Vendored

// FIR_IDENTICAL
sealed class Sealed(val x: Int) {
object First: Sealed(12)
open class NonFirst(x: Int, val y: Int): Sealed(x) {
object Second: NonFirst(34, 2)
object Third: NonFirst(56, 3)
}
}
fun foo(s: Sealed): Int {
return when(s) {
is Sealed.NonFirst -> 0
else -> -1
}
}