mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
- 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)
11 lines
167 B
Kotlin
Vendored
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() {}
|
|
} |