Files
codeql/java/ql/test-kotlin2/library-tests/exprs/whenExpr.kt
2023-11-17 14:07:13 +00:00

11 lines
155 B
Kotlin

fun testWhen(i: Int): Int {
return when(i) {
0 -> 1
1 -> 2
2 -> return 3
3 -> throw Exception("No threes please")
else -> 999
}
}