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.

A.java 234B

1234567891011
  1. public class A {
  2. public static void main(String []argv) {
  3. byte[][] bytes = new byte[][]{{0},{1}};
  4. }
  5. }
  6. aspect X {
  7. after() returning(Object o) : call(*[][].new(..)) {
  8. System.err.println("new array: "+o.getClass());
  9. }
  10. }