Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
cfg-variables
/
bugs
/
varInitializationInIf.kt
blob: 104866f104c9c60d79492f02e1e64ab8fe56491e [
file
] [
log
] [
blame
]
fun foo
()
{
val b
:
Boolean
if
(
1
<
2
)
{
b
=
false
}
else
{
b
=
true
}
use
(
b
)
}