Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
InfiniteLoops.kt
blob: 641ea356b72ba10c537383e1932f78fed802d6f0 [
file
]
fun unreachable
()
{}
fun a
()
{
do
{
}
while
(
true
)
unreachable
()
}
fun b
()
{
while
(
true
)
{
}
unreachable
()
}