2ecba6ac39
This directive anyway does not make test run twice with OI, and with NI It only once run the test with specific settings (// LANGUAGE) and ignores irrelevant (OI or NI tags)
18 lines
292 B
Kotlin
Vendored
18 lines
292 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// 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("", <!NAMED_ARGUMENTS_NOT_ALLOWED!>r<!> = { }, <!NAMED_ARGUMENTS_NOT_ALLOWED!>z<!> = false)
|
|
}
|