Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/annotations/incompatibleWithUnresolvedAttribute.java
Anna Kozlova 5d96e5d9f0 annotation highlighting: skip unresolved attribute highlighting for non-annotation types
GitOrigin-RevId: 4b705957a414cc90f2b952595f6d6dfbb880f876
2019-05-23 22:05:32 +03:00

3 lines
93 B
Java

class Foo<T> {
@<error descr="Annotation type expected">T</error>(value =2) void foo() {}
}