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

10 lines
207 B
Kotlin
Vendored

// See KT-9134: smart cast is not provided inside lambda call
@Target(AnnotationTarget.EXPRESSION)
annotation class My
fun bar(): Int = @My {
var i: Int?
i = 42
<!DEBUG_INFO_SMARTCAST!>i<!>
}()