14 lines
195 B
Kotlin
Vendored
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!!
|
|
}
|