7e26fa6002
Also #EA-64033 Fixed
11 lines
235 B
Kotlin
Vendored
11 lines
235 B
Kotlin
Vendored
// AssertionError for nested ifs with lambdas and Nothing as results
|
|
|
|
val <!IMPLICIT_NOTHING_PROPERTY_TYPE!>fn<!> = if (true) {
|
|
<!TYPE_MISMATCH!>{ true }<!>
|
|
}
|
|
else if (true) {
|
|
<!TYPE_MISMATCH!>{ true }<!>
|
|
}
|
|
else {
|
|
null!!
|
|
} |