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

12 lines
182 B
Kotlin

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