Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314
  1. @interface Annotation{}
  2. aspect B {
  3. declare @field : int C.anotherField : @Annotation; // should be woven
  4. declare @field : int someField : @Annotation; // shouldn't have any errors
  5. declare @field : int C.aField : @Annotation; // shouldn't have any errors
  6. }
  7. class C {
  8. @Annotation int aField = 1;
  9. }
  10. aspect D {
  11. public int C.anotherField;
  12. }