您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }