blob: 008ece774cbc8ba4e352c5708b94ff28c17f99ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Using wildcard for type
public class Two {
public static void main(String []argv) {
Integer[] Is = new Integer[5];
}
}
aspect X {
before(): call(*.new(..)) {
System.err.println("advice running");
}
}
|