選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pr107858.aj 233B

123456789101112
  1. class Foo {
  2. Foo field;
  3. void test() {}
  4. }
  5. public aspect pr107858 {
  6. void around() : call(void Foo.test()) {
  7. Foo foo = new Foo().field;
  8. proceed(foo); // caught at compile time
  9. proceed(new Foo().field); // crashes
  10. }
  11. }