Files
kotlin-fork/compiler/testData/diagnostics/tests/unit/nullableUnit.kt
T

7 lines
100 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo() {}
val x: Unit? = <!NO_ELSE_IN_WHEN!>when<!> ("A") {
"B" -> foo()
}