5 lines
71 B
Kotlin
Vendored
5 lines
71 B
Kotlin
Vendored
fun foo(x: Int, y: Int, z: Int) {}
|
|
|
|
fun test() {
|
|
foo(1, y = 2, 3)
|
|
} |