2d2c44ca9d
#KT-2106 Fixed
9 lines
246 B
Kotlin
9 lines
246 B
Kotlin
//KT-1940 Exception while repeating named parameters
|
|
package kt1940
|
|
|
|
fun foo(<!UNUSED_PARAMETER!>i<!>: Int) {}
|
|
|
|
fun test() {
|
|
foo(1, <!ARGUMENT_PASSED_TWICE!>i<!> = 2) //exception
|
|
foo(i = 1, <!ARGUMENT_PASSED_TWICE!>i<!> = 2) //exception
|
|
} |