f9b66d57cf
Remove incorrect jar clash warning and avoid unrelated unused parameter warnings
6 lines
86 B
Kotlin
Vendored
6 lines
86 B
Kotlin
Vendored
fun foo(x: Int, y: Int, z: Int): Int = x + y + z
|
|
|
|
fun test() {
|
|
foo(1, y = 2, 3)
|
|
}
|