IDEA-248001 Annotation parameter completion in generics doesn't work correctly
[idea/community.git] / java / java-tests / testData / codeInsight / completion / normal / EnumInTypeAnnotation.java
1 import java.lang.annotation.ElementType;
2 import java.lang.annotation.Target;
3 import java.util.List;
4
5 class A {
6   List<@Anno(value = Anno.MyEnum.f<caret>) String> l;
7
8 }
9
10 @Target(ElementType.TYPE_USE)
11 @interface Anno {
12   enum MyEnum {foo,bar}
13   MyEnum value();
14 }