summaryrefslogtreecommitdiffstats
path: root/tests/features160/annotationValueMatching/LongValueMatching.java
blob: f3eec424e66812473e9fc94fb49aa1ad44a7f870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.lang.annotation.*;

public class LongValueMatching {
  public static void main(String[] args) { }

  @Anno(jval=123123123) public void methodOne() {}
  @Anno(jval=8) public void methodTwo() {}
}

@interface Anno {
  long jval();
}


aspect X {	
  before(): execution(@Anno(jval=123123123) * *(..))  {}
}