summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr112027.aj
blob: 08b4eac1a31bd3fb726990a5bdb18aeaf7690963 (plain)
1
2
3
4
public aspect pr112027 {
  pointcut pc() : this(pr112027);
  before(pr112027 tis) : pc() && this(tis) { }
}