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

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

  @Anno(dval=37.01) public void methodOne() {}
  @Anno(dval=52.123) public void methodTwo() {}
}

@interface Anno {
  double dval();
}


aspect X {	
  before(): execution(@Anno(dval=37.01) * *(..))  {}
}