summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr137235/directory.jar/BeforeExec.aj
blob: 35d12cd86e11a1433ccf4acea828cda55acb4f0d (plain)
1
2
3
4
5
public aspect BeforeExec {
    before() : execution(* getName()) {
        System.out.println("Before execution");
    }
}