aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/simplejava/SimpleF.java
blob: 5bc6e2b590c85bbb00dbce8140f0c9782ad6b421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public aspect SimpleF {
    public static void main(String[] args) { test(); }

    pointcut sendHeader():
        call(void *.*(String));

/*
    before(): call(* foo(..)) {
                aspectField += s;
    }
*/

    public static void test() {
    }
}