aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr138220/AtAspectWithPerClause.aj
blob: 729644328e99efab384db6355464232f5e206136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import org.aspectj.lang.annotation.*;

@Aspect("perthis(pc())")
public class AtAspectWithPerClause {

 @Pointcut("execution(* *(..))")
 public void pc() {}

}

@Aspect
class Foo {

 @Pointcut("execution(* *(..))")
 public void pc() {}

}