Files
kotlin-fork/compiler/testData/diagnostics/tests/namedArguments/disallowForSamAdapterConstructor.fir.kt
T
2020-02-12 16:05:11 +03:00

18 lines
212 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
// FILE: test/J.java
package test;
public class J {
public J(String s, Runnable r, Boolean z) {
}
}
// FILE: usage.kt
package test
fun test() {
J("", r = { }, z = false)
}