849b8acbf8
Just in tests that changed after deprecation
12 lines
133 B
Kotlin
Vendored
12 lines
133 B
Kotlin
Vendored
fun test() {
|
|
@ann
|
|
while (2 < 1) {}
|
|
|
|
@ann
|
|
do {} while (2 < 1)
|
|
|
|
@ann
|
|
for (i in 1..2) {}
|
|
}
|
|
|
|
annotation class ann |