Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
when
/
exceptionOnNoMatch.kt
blob: 15a1b759082d7ac74920d9340a7e2355f550a3e9 [
file
]
fun isZero
(
x
:
Int
)
=
when
(
x
)
{
0
->
true
else
->
throw
Exception
()
}
fun box
():
String
{
try
{
isZero
(
1
)
}
catch
(
e
:
Exception
)
{
return
"OK"
}
return
"Fail"
}