Files
kotlin-fork/idea/testData/resolve/references/qualifiedAccess/callableReference1.kt
T
Tianyu Geng 84f8d4d315 FIR IDE: handle reference to package and outer classes
For a qualified name like `foo.bar.Outer.Inner`, FIR represents it as
one atomic FIR element. Hence, to properly resolve these names to the
corresponding package and class, we need some additional work.
2021-06-24 18:27:51 +02:00

12 lines
112 B
Kotlin
Vendored

package foo.bar.baz
class AA {
fun foo() {}
}
fun test() {
A<caret>A::foo
}
// REF: (foo.bar.baz).AA