Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/elvisOnUnitInLet.kt
T

9 lines
156 B
Kotlin
Vendored

fun foo(x: Int?) {
// Both parts of the Elvis should be alive, see KT-7936
x?.let {
smth()
}?: orElse()
}
fun smth() {}
fun orElse() {}