Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/kt10805.kt
T
2021-05-25 13:28:29 +03:00

14 lines
195 B
Kotlin
Vendored

// FIR_IDENTICAL
// AssertionError for nested ifs with lambdas and Nothing as results
// NI_EXPECTED_FILE
val fn = if (true) {
{ true }
}
else if (true) {
{ true }
}
else {
null!!
}