Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
onLoopsUnreachable.fir.kt
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