aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr138219/RegularPCWithReference.aj
blob: ca7ab0939a8506cad1da036fb9aa77f43c35bae8 (plain)
1
2
3
4
5
6
7
8
public aspect RegularPCWithReference {

  pointcut refersToMypc() : mypc();

  pointcut mypc() : SomeOtherType.pc();


}