annotation highlighting: skip unresolved attribute highlighting for non-annotation types

GitOrigin-RevId: 4b705957a414cc90f2b952595f6d6dfbb880f876
This commit is contained in:
Anna Kozlova
2019-05-23 22:05:32 +03:00
committed by intellij-monorepo-bot
parent 893413de5a
commit 5d96e5d9f0
3 changed files with 10 additions and 0 deletions
@@ -0,0 +1,3 @@
class Foo<T> {
@<error descr="Annotation type expected">T</error>(value =2) void foo() {}
}