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