Files
kotlin/compiler/testData/codegen/patternMatching/exceptionOnNoMatch.jet
2011-10-20 16:21:18 +02:00

4 lines
45 B
Plaintext

fun isZero(x: Int) = when(x) {
0 => true
}