summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR152589/base/A.aj
blob: fd2f786955a646d25314d1ebb7ee016d085e4ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public aspect A {
    after () throwing (Throwable th) :  execution(* *(..)) {
		System.err.println(thisEnclosingJoinPointStaticPart);
	}
}

class C1 {
	public void anotherMethod() {
		
	}
}