summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148027/A.aj
blob: 306f14b6822c73084c5a0f7a278880be57a5bb1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package pkg;

public aspect A {

	before() : C.pointcutInClass() {	
	}
	
	pointcut pointcutInAspect() : execution(void aMethod());
	
	before() : pointcutInAspect() {
	}
	
	public void aMethod() {
	}
}