296fe698b8
When possible, try to resolve references in types using only the PSI without building the full resolve session.
17 lines
234 B
Kotlin
Vendored
17 lines
234 B
Kotlin
Vendored
package foo.bar
|
|
|
|
class A
|
|
|
|
object F {
|
|
class foo {
|
|
class bar {
|
|
annotation class A
|
|
|
|
@foo.bar.A fun test(): Nothing = TODO()
|
|
}
|
|
}
|
|
}
|
|
|
|
// ANNOTATION: foo.bar.F.foo.bar.A
|
|
// SEARCH: method:test
|