05883afc0a
^KT-39883 In Progress
14 lines
206 B
Kotlin
Vendored
14 lines
206 B
Kotlin
Vendored
// LANGUAGE: -ProhibitSimplificationOfNonTrivialConstBooleanExpressions
|
|
fun test() {
|
|
@ann
|
|
while (2 > 1) {}
|
|
|
|
@ann
|
|
do {} while (2 > 1)
|
|
|
|
@ann
|
|
for (i in 1..2) {}
|
|
}
|
|
|
|
annotation class ann
|