summaryrefslogtreecommitdiffstats
path: root/tests/model/pr238054/pr238054.aj
blob: f1021b3344c591307f4586a6d192bcc2c923c32c (plain)
1
2
3
4
5
6
7
8
class A {
        void x() {}
        void y() { x();x();}
}

aspect B {
        before() : call(* A.x()) {}
}