704b3bd2e6
As fqNames of some symbols may change during conversion E.g, when moving Java static method to Kotlin companion object #KT-19607 fixed #KT-32903 fixed #KT-33743 fixed #KT-33556 fixed
13 lines
181 B
Java
Vendored
13 lines
181 B
Java
Vendored
public class Base {
|
|
public static void foo() {
|
|
}
|
|
}
|
|
|
|
public class Derived extends Base {
|
|
}
|
|
|
|
public class User {
|
|
public static void test() {
|
|
Derived.foo();
|
|
}
|
|
} |