296fe698b8
When possible, try to resolve references in types using only the PSI without building the full resolve session.
13 lines
154 B
Kotlin
Vendored
13 lines
154 B
Kotlin
Vendored
package foo
|
|
|
|
class A {
|
|
private annotation class B
|
|
|
|
class C {
|
|
@B
|
|
fun foo() {}
|
|
}
|
|
}
|
|
// ANNOTATION: foo.A.B
|
|
// SEARCH: method:foo
|