Files
kotlin/compiler/testData/multiModule/java/custom/a/a.kt
Denis Zharkov 12bbbb6ff1 Refactor Java resolver components
- Move components from LazyJavaResolverContext to JavaResolverComponents
- Drop LazyJavaClassResolver replacing it's usages with module resolver
(now enum entries from another module as annotation arguments are being resolved, see test)
2016-04-25 17:41:08 +03:00

11 lines
167 B
Kotlin
Vendored

package test
import custom.*
public class KotlinA: AClass() {
fun returnA(): AClass {}
fun paramA(p: AClass) {}
@AAnnotation(AEnum.AX) fun annoA() {}
}