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.

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