Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onLoops.kt
T

13 lines
150 B
Kotlin
Vendored

// FIR_IDENTICAL
fun test() {
@ann
while (2 < 1) {}
@ann
do {} while (2 < 1)
@ann
for (i in 1..2) {}
}
annotation class ann