Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
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"
}