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

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