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.

A.java 159B

123456789101112
  1. @Foo
  2. class A {
  3. public void m() {}
  4. }
  5. aspect X {
  6. //before(): execution(* (@Foo *..*).*(..)) {}
  7. before(): execution(* (@Foo *).*(..)) {}
  8. }
  9. @interface Foo {}