aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs167/pr296054/AnnotAspect.aj
blob: 28541f276bbf95bb54148de4223d7600764e012e (plain)
1
2
3
4
5
6
7
8
9
10
@SuppressWarnings("nls")
public aspect AnnotAspect {
    declare @field : * AnnotDemo.* : @Demo(myValues={"alfa", "beta", "gamma"});

}
class AnnotDemo {
//  that works fine in the java class 
//@Demo(myValues={"alfa", "beta", "gamma"})
private int annotateMe;
}