diff options
author | acolyer <acolyer> | 2004-08-10 11:08:56 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-08-10 11:08:56 +0000 |
commit | 44a92e1a04f8f2f1a862f15f9d0b9ed761d05fd4 (patch) | |
tree | fbbd8c96791ea1ffe010580db25ad89d0eaff681 /tests/bugs/pr59208/A.aj | |
parent | c3d5f40edf027600d5ed5e7ec0cc391bf9b56859 (diff) | |
download | aspectj-44a92e1a04f8f2f1a862f15f9d0b9ed761d05fd4.tar.gz aspectj-44a92e1a04f8f2f1a862f15f9d0b9ed761d05fd4.zip |
fix for Bugzilla Bug 59208
Weaver fails in BCEL for large classe
Diffstat (limited to 'tests/bugs/pr59208/A.aj')
-rw-r--r-- | tests/bugs/pr59208/A.aj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs/pr59208/A.aj b/tests/bugs/pr59208/A.aj new file mode 100644 index 000000000..10f4abe87 --- /dev/null +++ b/tests/bugs/pr59208/A.aj @@ -0,0 +1,6 @@ +aspect A { + boolean around() : (target(java.util.HashSet) && call(boolean add(..) ) ) + { + return false; + } + }
\ No newline at end of file |