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