Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/lambdaCall.fir.kt
T

6 lines
144 B
Kotlin
Vendored

// See KT-9134: smart cast is not provided inside lambda call
fun bar(): Int = <!UNRESOLVED_REFERENCE!>{
var i: Int?
i = 42
i
}()<!>