blob: 56ca7f6a2d4a77f67a982f8a9f0c2b5c54048dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class Main {
static {
System.setProperty("A.before", "false");
}
public static void main(String[] args) {
if (!Boolean.getBoolean("A.before")) {
throw new Error("property A.before not set by aspect A.java");
}
}
}
|