aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr121385/ConcreteWorld.aj
blob: cb171650956b861a06a74bb06a76115d5a0a840c (plain)
1
2
3
4
5
public aspect ConcreteWorld extends World {
    pointcut greeting() :
    	execution(* Hello.sayWorld(..))
    	|| execution(* Hello.sayHello(..));
}