aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/pertypewithin/H.java
blob: 8de290057f285aa67d21935d29d4d84a9e9012c4 (plain)
1
2
3
4
5
6
7
8
import org.aspectj.lang.annotation.SuppressAjWarnings;

public aspect H pertypewithin(G) {
	@SuppressAjWarnings("adviceDidNotMatch")
	after(): call(* *(..)) {
		System.err.println("advice running");
	}
}