aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr262905/A.java
blob: a1e2a61608f2745d03d6a8b2dd90f7e24c335faa (plain)
1
2
3
4
5
6
public aspect A {

pointcut cf(): execution(* *(..)) && !cflow(cf());

before(): cf() {}
}