blob: 3362f502477c5dea269ab878290dfa3a40d84c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class Coo {
Coo() {
}
int i = 4;
public static void main(String[] args) {
}
}
aspect Azpect {
before(): !cflow(preinitialization(Coo.new(..))) && execution(* main(..)) { }
}
|