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.

Priority.aj 348B

1234567891011
  1. // Bug 53012
  2. // Although the declare precedence mentions interfaces (and not aspects explicitly), it does
  3. // mention with a '+' suffix - this should be allowed.
  4. public aspect Priority {
  5. public interface Highest {}
  6. public interface Lowest {}
  7. declare precedence: Highest+, *, Lowest+;
  8. }
  9. aspect Security implements Priority.Highest {}