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.

PR82570_1.java 379B

1234567891011121314151617181920212223242526272829303132
  1. public class PR82570_1 {
  2. public static void main(String[] args) {
  3. new PR82570_1().m();
  4. }
  5. public void m() {
  6. }
  7. }
  8. aspect X {
  9. public PR82570_1.new(String p) { this(); }
  10. public int PR82570_1.itdField;
  11. public void PR82570_1.itdMethod(String s) {
  12. }
  13. before(): call(* m(..)) {
  14. System.err.println("m");
  15. }
  16. void around(): call(* m(..)) {
  17. }
  18. }