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

18 lines
230 B
Kotlin
Vendored

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