Fix -Xuse-mixed-named-arguments compiler arg

This commit is contained in:
Dmitriy Novozhilov
2019-11-08 15:17:41 +03:00
parent 8561f08f06
commit 45523a5767
5 changed files with 28 additions and 1 deletions
@@ -0,0 +1,5 @@
fun foo(x: Int, y: Int, z: Int) {}
fun test() {
foo(1, y = 2, 3)
}