be0dd84a06
The check has already been partially implemented in org.jetbrains.kotlin.fir.resolve.calls.FirCallArgumentsProcessor. This change completes the missing piece that determines if a `FirFunction` has stable parameter names.
10 lines
182 B
Kotlin
Vendored
10 lines
182 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
public class A {
|
|
public A(int x, String y) {}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
val test = A(<!NAMED_ARGUMENTS_NOT_ALLOWED!>x = 1<!>, <!NAMED_ARGUMENTS_NOT_ALLOWED!>y = "2"<!>)
|