Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
varInitializationInIfInCycle.kt
blob: cce20d6ee902e85d166e6b9f018ba893ec33bd14 [
file
]
// FIR_IDENTICAL
fun foo
(
numbers
:
Collection
<
Int
>)
{
for
(
i
in
numbers
)
{
val b
:
Boolean
if
(
1
<
2
)
{
b
=
false
}
else
{
b
=
true
}
use
(
b
)
continue
}
}
fun
use
(
vararg a
:
Any
?)
=
a