Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
when
/
exceptionOnNoMatch.kt
blob: cc2507f82ef7f5df9bb3e4475063950c8566a7b8 [
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"
}