blob: b9f05d0f4b2eced341631d0e3a5fd81db35d6869 [file] [log] [blame]
// LANGUAGE: -ProhibitSimplificationOfNonTrivialConstBooleanExpressions
fun test() {
@ann
while (2 > 1) {}
@ann
do {} while (2 > 1)
@ann
for (i in 1..2) {}
}
annotation class ann