Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
patternMatching
/
exceptionOnNoMatch.kt
blob: 2c98ded9809a4754f1f7718097c606c2dd8617b7 [
file
]
fun isZero
(
x
:
Int
)
=
when
(
x
)
{
0
->
true
else
->
throw
Exception
()
}