You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UndefinedPointCut_PR396.java 275B

12345678910
  1. class UndefinedPointCut_PR396 {
  2. public static void main(String[] args) {
  3. org.aspectj.testing.Tester.check(false, "Shouldn't have compiled");
  4. }
  5. }
  6. aspect AspectTest { //of eachJVM() {
  7. pointcut pc4(): callsto(pc2()); //pc2 is undefined
  8. before(): pc4() {}
  9. }