84f8d4d315
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.
12 lines
112 B
Kotlin
Vendored
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
|