Files
kotlin-fork/idea/testData/formatter/When.kt
T
2012-01-18 19:27:41 +04:00

6 lines
56 B
Kotlin

fun some(x : Any) {
when (x) {
is Int -> 0
else -> 1
}
}