highlighting: mark default annotation value used for implicit calls (IDEA-71133)

This commit is contained in:
Anna Kozlova
2018-06-21 13:50:19 +03:00
parent e9bad2a70d
commit 107a789bea
4 changed files with 18 additions and 2 deletions
@@ -0,0 +1,6 @@
@Annotation("")
class <warning descr="Class 'Bar' is never used">Bar</warning> { }
@interface Annotation {
String value();
int <warning descr="Method 'ints()' is never used">ints</warning>() default 0;
}