e6d923f65c
Some of them should be INVISIBLE_MEMBER though
20 lines
254 B
Kotlin
Vendored
20 lines
254 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
public class A {
|
|
Object foo(String s) {
|
|
return null;
|
|
};
|
|
}
|
|
|
|
// FILE: main.kt
|
|
|
|
class B : A() {
|
|
override fun foo(s: String): Any? {
|
|
return null
|
|
}
|
|
}
|
|
|
|
fun test(b: B) {
|
|
b.<!INVISIBLE_REFERENCE!>foo<!>("")
|
|
}
|