Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/sam/privateCandidatesWithWrongArguments.fir.kt
pyos e6d923f65c FIR: rename HIDDEN to INVISIBLE_REFERENCE
Some of them should be INVISIBLE_MEMBER though
2021-04-21 16:18:21 +03:00

22 lines
266 B
Kotlin
Vendored

// JAVAC_EXPECTED_FILE
// FILE: foo/A.java
package foo;
public class A {
static void f(B b) {
b.g();
}
public interface B {
void g();
}
}
// FILE: bar/sample.kt
package bar
fun main() {
foo.A.<!INVISIBLE_REFERENCE!>f<!> {}
}