Files
kotlin-fork/idea/testData/search/annotations/testNestedClassAsAnnotation.kt
T
Dmitry Jemerov 296fe698b8 KotlinAnnotatedElementsSearcher optimization
When possible, try to resolve references in types using only the PSI
without building the full resolve session.
2017-04-04 11:14:09 +02:00

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