summaryrefslogtreecommitdiffstats
path: root/tests/bugs/pr59208/A.aj
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-08-10 11:08:56 +0000
committeracolyer <acolyer>2004-08-10 11:08:56 +0000
commit44a92e1a04f8f2f1a862f15f9d0b9ed761d05fd4 (patch)
treefbbd8c96791ea1ffe010580db25ad89d0eaff681 /tests/bugs/pr59208/A.aj
parentc3d5f40edf027600d5ed5e7ec0cc391bf9b56859 (diff)
downloadaspectj-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.aj6
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