Files
kotlin/compiler/testData/codegen/patternMatching/exceptionOnNoMatch.kt
2013-01-24 21:12:27 +04:00

5 lines
73 B
Kotlin
Vendored

fun isZero(x: Int) = when(x) {
0 -> true
else -> throw Exception()
}