5767f84c0e
#KT-13762 Fixed
11 lines
246 B
Kotlin
Vendored
11 lines
246 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
|
|
<!DEBUG_INFO_SMARTCAST!>i<!>
|
|
}() |