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.

Eight.java 324B

1234567891011
  1. public class Eight {
  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(): call(int[][].new(int,int)) { System.err.println("advice running 1");}
  9. before(): call(Integer[][].new(int,int)) { System.err.println("advice running 2");}
  10. }