summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting7/DynamicallyAddIgnoredAnnotations.java
blob: 97d405de4af187e1196d09c7123c8f680c4e9191 (plain)
1
2
3
4
5
6
7
8
9

public class <warning descr="Class 'WithMain' is never used">WithMain</warning> {
  @MyAnno
  public void <warning descr="Method 'myTestMethod()' is never used">myTestMethod</warning>(){}
}

@interface MyAnno {

}