blob: 3f46d7e1d7ecbf001cd3a702210ea20d772938f8 [file] [log] [blame]
import java.lang.annotation.Documented;
class Text { Foo foo; }
@Bar(Baz.CONST, value = {Baz.CONST}) class Foo {}
@Documented @interface Bar {}
class Baz {
static int CONST;
}