You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Nine.java 399B

1234567891011
  1. public class Nine {
  2. public static void main(String []argv) {
  3. Integer[][] Is = new Integer[5][6];
  4. int[][] is = new int[2][4];
  5. }
  6. }
  7. aspect X {
  8. before(int a,int b): call(int[][].new(int,int)) && args(a,b) { System.err.println("advice running 1 ("+a+","+b+")");}
  9. before(int a,int b): call(Integer[][].new(int,int)) && args(a,b) { System.err.println("advice running 2 ("+a+","+b+")");}
  10. }