summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr87525/B.java
blob: 5fbf93a4c318651c64fd674426ea6a459aa36114 (plain)
1
2
3
4
5
6
7
8
9
privileged aspect B {

  before(A anA):execution(* a()) && this(anA){   
      switch(1){
        case anA.c: // "case expressions must be constant expressions"
      }
    }

}