b4c9a2616e
^KTIJ-25960 Fixed
19 lines
285 B
Kotlin
Vendored
19 lines
285 B
Kotlin
Vendored
// UNRESOLVED_REFERENCE
|
|
// FILE: main.kt
|
|
import dependency.JavaBase
|
|
|
|
class KotlinChild : JavaBase() {
|
|
/**
|
|
* [st<caret>aticFun]
|
|
*/
|
|
fun test() {}
|
|
}
|
|
|
|
|
|
// FILE: dependency/JavaBase.java
|
|
package dependency;
|
|
|
|
public class JavaBase {
|
|
public static void staticFun() {}
|
|
}
|