Files
kotlin-fork/compiler/testData/cli/jvm/useMixedNamedArgumentsFlag.kt
T
Alexander Udalov f9b66d57cf Fix test data for -Xuse-mixed-named-arguments
Remove incorrect jar clash warning and avoid unrelated unused parameter
warnings
2019-11-08 20:52:22 +01:00

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)
}