Add test for obsolete issue
#KT-12688 Obsolete
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
// 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<!> {}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package
|
||||
|
||||
package bar {
|
||||
public fun main(): kotlin.Unit
|
||||
}
|
||||
Reference in New Issue
Block a user