aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs180/415957/MyAspect.aj
blob: 673463a55bc5a11ed46f73076d78dd1ca0c0d85f (plain)
1
2
3
4
5
6
7
8
public aspect MyAspect {
    pointcut all(): execution(@javax.annotation.Resource * *(..));


    before(): all() {
        System.out.println("Hi");
    }
}