Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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