aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs190/modules/fff/otherpkg/Azpect.java
blob: af53fdf49a2a721ac594ede7671fc79eefaab24d (plain)
1
2
3
4
5
6
7
package otherpkg;

public aspect Azpect {
	before(): execution(* *(..)) && !within(Azpect) {
		System.out.println("Azpect running");
	}
}