5 lines
67 B
Kotlin
Vendored
5 lines
67 B
Kotlin
Vendored
fun foo(a: Int) {
|
|
when (a) {
|
|
1 -> foo(a)<caret>
|
|
}
|
|
} |