summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr86903/BadWormhole.java
blob: 6d14b49801e52df90728b1a0680efe6a680776e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
aspect BadWormhole {

  pointcut isDynamicService(Main mm,Service s):
    cflowbelow(this(mm)) && 
    if(true==true) && 
    this(s);

  //before(Main mm,Service s): isDynamicService(mm,s) {}
  before(Service s): isDynamicService(*,s) {}
}