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

pr99191_1.java 206B

12345678910
  1. @interface Annotation{}
  2. aspect B {
  3. declare @field : int C.noSuchField : @Annotation; // should be an error
  4. declare @field : int B.noSuchField : @Annotation; // should be an error
  5. }
  6. class C {
  7. }