Files
kotlin-fork/compiler/testData/multiModule/java/custom/a/custom/AAnnotation.java
T
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

5 lines
69 B
Java
Vendored

package custom;
public @interface AAnnotation {
AEnum value();
}