Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cfg-variables
/
bugs
/
varInitializationInIfInCycle.kt
blob: bb151e3e0e2be5aa26717cb93f2de4cdc42889c1 [
file
]
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