8 lines
101 B
Kotlin
Vendored
8 lines
101 B
Kotlin
Vendored
annotation class My
|
|
|
|
fun foo() {
|
|
for (i: @My Int in 0..41) {
|
|
if (i == 13) return
|
|
}
|
|
}
|