aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170/transientTjpFields/Code.java
blob: 8b4c44e17f5ef3d56a6f0e10dc1ea327e1618fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class Code {
  public void m() {
  }

  public void n() {
  }
  
}

aspect X {
  before(): execution(* Code.*(..)) {System.out.println(thisJoinPointStaticPart);}
}