304112cd8a
Instead of relying on UNRESOLVED_REFERENCE directive for the whole file, just render the unresolved reference right in the .txt testdata This will allow to introduce multi-caret resolve testdata more naturally Required for KT-65152 and KT-62695
18 lines
261 B
Kotlin
Vendored
18 lines
261 B
Kotlin
Vendored
// 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() {}
|
|
}
|