選択できるのは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. }