aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs173/pr407966/Aspect.aj
blob: 7270f742fb97ed9434e8a5bcec869079014582b7 (plain)
1
2
3
4
5
public aspect Aspect {
        void around(): call(* Def.def(..)) {
                System.out.println("aspect");
        }
}