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
15 lines
164 B
Kotlin
Vendored
15 lines
164 B
Kotlin
Vendored
// FILE: main.kt
|
|
package nonRoot
|
|
import java.lang.*
|
|
|
|
fun foo() {
|
|
<caret>Fake()
|
|
}
|
|
|
|
// FILE: java.java
|
|
class java {
|
|
class lang {
|
|
class Fake()
|
|
}
|
|
}
|