aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr155033/Aspect.aj
blob: 60b1b57c23de5efe6951db454f40d2d8a631471c (plain)
1
2
3
4
5
6
7
8
9
public aspect Aspect {

	declare @method : public static void main(String[]) : @Annotation;

	before () : execution(public Class*.new()) {
		System.out.println("? Aspect.before()");
	}
	
}