Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
firProblems
/
explicitIncrement.kt.txt
blob: cda01f3033b3f5725896d591445a0fd2c2bbe340 [
file
]
fun bar() {
}
fun foo() {
var i: Int = 1
while (less(arg0 = i, arg1 = 10)) { // BLOCK
bar()
i = i.inc()
}
}