296fe698b8
When possible, try to resolve references in types using only the PSI without building the full resolve session.
14 lines
155 B
Kotlin
Vendored
14 lines
155 B
Kotlin
Vendored
package foo
|
|
|
|
annotation class Xyzzy
|
|
|
|
object Foo {
|
|
class Xyzzy
|
|
}
|
|
|
|
@Xyzzy fun foo()
|
|
|
|
// ANNOTATION: foo.Xyzzy
|
|
// SEARCH: method:foo
|
|
// OPTIMIZED_TRUE: 1
|