mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +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)
17 lines
289 B
Kotlin
Vendored
17 lines
289 B
Kotlin
Vendored
package test
|
|
|
|
import custom.*
|
|
|
|
public class KotlinB: AClass() {
|
|
public fun returnA(): AClass {}
|
|
|
|
public fun paramA(a: AClass) {}
|
|
|
|
public fun paramB(b: BClass) {}
|
|
|
|
public fun returnB(): BClass { }
|
|
|
|
@AAnnotation(AEnum.AX) fun annoA() {}
|
|
|
|
@BAnnotation fun annoB() {}
|
|
} |