aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ltw/callMunging/case2/X.java
blob: 0be7aa1e452db60c956bf587698135305c5d76bd (plain)
1
2
3
4
5
6
7
8
9
import java.io.Serializable;

public aspect X {
  declare @type: T: @MarkerAnnotation;

  before(): call(* (@MarkerAnnotation *).m*(..)) {
	 System.out.println("advice running");
  }
}