Files
kotlin-fork/compiler/testData/diagnostics/tests/when/kt9929.fir.kt
T

10 lines
124 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
val test: Int = if (true) {
when (2) {
1 -> 1
else -> null
}
}
else {
2
}