79ee8f452c
#KT-12688 Obsolete
20 lines
239 B
Kotlin
Vendored
20 lines
239 B
Kotlin
Vendored
// 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_MEMBER!>f<!> {}
|
|
} |