aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR152589/inc1/A.aj
blob: a2ebf78c504b43675331de82693d0efad50ab66a (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() {
		
	}
}