aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/aspectpath/A.java
blob: 267b2679f83044922ae76ed67d13854200f3c3ef (plain)
1
2
3
4
5
6
aspect A {
    before() : execution(void main(String[])) {
        System.setProperty("A.before", "true");
    }
}