Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
OnlyWhileInFunctionBody.kt
blob: 0e4aa0aa8e6ddf93d3838d7cdeb69f1711bdadea [
file
]
fun main
()
{
while
(
0
>
1
)
{
2
}
}
fun dowhile
()
{
do
{
return
}
while
(
0
>
1
)
}