Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
cfg-variables
/
bugs
/
doWhileAssignment.kt
blob: 60355b11aa28b398756e07587b0c6a05616876aa [
file
] [
log
] [
blame
]
// See KT-15334: incorrect reassignment in do...while
fun test
()
{
do
{
val s
:
String
s
=
""
}
while
(
s
==
""
)
}
fun test2
()
{
while
(
true
)
{
val s
:
String
s
=
""
if
(
s
!=
""
)
break
}
}