summaryrefslogtreecommitdiffstats
path: root/tests/errors/NoAspect.java
blob: 14099bd6abb9f87228218ae165ed2a74c40fb187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class NoAspect {
    public static void main(String[] args) {
        new NoAspect().go();
    }

    void go() {
    }
}


class A 
{    before(): target(*) && call(* go(..)) {}
}