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


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