aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs190/modules/fff/extra/AnotherAzpect.java
blob: 16b8c16d6ab5ae99c9f8e914671177ae6adce6bd (plain)
1
2
3
4
5
6
7
package extra;

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