Files
kotlin-fork/compiler/testData/diagnostics/tests/namedArguments/disallowForJavaConstructor.fir.kt
T

10 lines
114 B
Kotlin
Vendored

// FILE: A.java
public class A {
public A(int x, String y) {}
}
// FILE: 1.kt
val test = A(x = 1, y = "2")