summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/annotations/privateInaccessibleConstant.java
blob: 435810d00b4484cfda5224744eea429374bdd799 (plain)
1
2
3
4
5
6
7
8
@FooAnnotation(<error descr="'Foo.BAR' has private access in 'Foo'">Foo.BAR</error>)
class Foo {
  private static final String BAR = "bar";
}

@interface FooAnnotation {
  String value();
}