Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
floatMerge.kt
blob: 22033fa3950a4aec7dcdd934f5e9e6cb3d4d0d8e [
file
]
fun foo
():
Float
{
var
f
=
2.0f
if
(
f
>
0.0f
)
{
f
++
}
f
++
return
f
}
fun box
()
=
if
(
foo
()
>
3.5f
)
"OK"
else
"Fail"