blob: f10ea9005377e0401a426facf740289f8be94185 [file]
// 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
}()