Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
kt9022Throw.kt
blob: 281f399cafe46d9f3b989c111cefa3b353a694e9 [
file
]
fun box
():
String
{
var
cycle
=
true
;
while
(
true
)
{
if
(
true
||
throw
RuntimeException
())
{
return
"OK"
}
}
return
"fail"
}