10 lines
149 B
Kotlin
Vendored
10 lines
149 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
@Target(AnnotationTarget.TYPE)
|
|
annotation class My
|
|
|
|
fun foo() {
|
|
for (i: @My Int in 0..41) {
|
|
if (i == 13) return
|
|
}
|
|
}
|