aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr266220/Isolator.java
blob: 301c22ef5968c68885901089ebc857865d916950 (plain)
1
2
3
4
5
6
7
8
public abstract aspect Isolator<T> {

  pointcut scope(): within(T);

  before(): execution(* *(..)) && scope() {
    System.out.println(thisJoinPoint);
  }
}