aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/pertypewithin/H.java
blob: fd23c3e579dad1fde4bb3a3aee2149a27ceecac9 (plain)
1
2
3
4
5
6
7
public aspect H pertypewithin(G) {


  after(): call(* *(..)) {
    System.err.println("advice running");
  }
}