Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
doWhileNotDefined.kt
blob: e41bcd1a76e63b24e04eff79b0a9e1821245e6e6 [
file
]
fun test
(
cond1
:
Boolean
)
{
do
{
if
(
cond1
)
continue
val cond2
=
false
}
while
(<!
UNINITIALIZED_VARIABLE
!>
cond2
<!>)
// cond2 may be not defined here
}