diff options
author | aclement <aclement> | 2010-03-19 16:14:22 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-03-19 16:14:22 +0000 |
commit | 7579d32b26596d041cf58c29203a40fe74aa716f (patch) | |
tree | a96de46d9251df52573c7afa57b0668a06b2384b /tests/bugs169 | |
parent | 9f44ac1d97dbaa8d571ad6d73746c82a3fe07aae (diff) | |
download | aspectj-7579d32b26596d041cf58c29203a40fe74aa716f.tar.gz aspectj-7579d32b26596d041cf58c29203a40fe74aa716f.zip |
44365: cope with also wanting to advise a method called is
Diffstat (limited to 'tests/bugs169')
-rw-r--r-- | tests/bugs169/pr44365/Errors2.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs169/pr44365/Errors2.java b/tests/bugs169/pr44365/Errors2.java new file mode 100644 index 000000000..444b21b02 --- /dev/null +++ b/tests/bugs169/pr44365/Errors2.java @@ -0,0 +1,9 @@ +public class Errors2 { + public void is(String s) { + + } +} + +aspect X { + before(): execution(* is(..)) {} +} |