7 lines
95 B
Kotlin
Vendored
7 lines
95 B
Kotlin
Vendored
fun foo(p: Int) {
|
|
when (p) {
|
|
1 -> { <caret>
|
|
println()
|
|
}
|
|
}
|
|
} |