blob: 2a4a61a9d6f11109c5baf15b226036683051a46b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package pack;
public aspect A {
private int C.y = 3;
/**
* blah
*/
public String C.m(){return "";};
public C.new(String s){ this();};
pointcut p() : execution(* *.*(..));
before() : p() {
}
}
|