aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr205907/Test.aj
blob: c06be67b271537f87a600d7df6d3b108878f7c22 (plain)
1
2
3
4
5
6
aspect Test {

  pointcut p(): bean(foo*);

  before(): p() { }
}