projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
IDEA-248001 Annotation parameter completion in generics doesn't work correctly
[idea/community.git]
/
java
/
java-tests
/
testData
/
codeInsight
/
completion
/
normal
/
EnumInTypeAnnotation_after.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.foo<caret>) String> l;
7
8
}
9
10
@Target(ElementType.TYPE_USE)
11
@interface Anno {
12
enum MyEnum {foo,bar}
13
MyEnum value();
14
}