e6d923f65c
Some of them should be INVISIBLE_MEMBER though
22 lines
266 B
Kotlin
Vendored
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<!> {}
|
|
}
|