aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features151/newarrayjoinpoint/Seven.java
blob: da4bb754314f3e1b6986ea14eb5dec4a4af4982c (plain)
1
2
3
4
5
6
7
8
9
public class Seven {
  public static void main(String []argv) {
    int[] is = new int[5];
  }
}

aspect X {
  before(): call(int[].new(int)) { System.err.println("advice running");}
}