Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onLoops.kt
T
2013-09-24 06:58:41 -07:00

12 lines
136 B
Kotlin

fun test() {
[ann]
while (1 < 2) {}
[ann]
do {} while (1 < 2)
[ann]
for (i in 1..2) {}
}
annotation class ann