Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/withErrors/FakeJavaLang4.kt
T
Roman Golyshev 304112cd8a [tests] Refactor AbstractReferenceResolveTest. Part 1
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
2024-01-26 10:12:09 +00:00

15 lines
219 B
Kotlin
Vendored

// FILE: main.kt
package nonRoot
fun foo() {
java.lang.<caret>Fake() // qualification doesn't help, because we are in other package
}
// FILE: java.java
class java {
class lang {
class Fake()
}
}