Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/lambdaCallAnnotated.fir.kt
T
2020-02-04 15:00:12 +03:00

11 lines
219 B
Kotlin
Vendored

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