diff options
author | jhugunin <jhugunin> | 2002-12-18 05:17:00 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-18 05:17:00 +0000 |
commit | 29f7bfab4410cc182e760475ba6e71c2a62c3c47 (patch) | |
tree | 9b7b4613de780e969fc0acbd7ef6f73d1a32ea65 /tests/new | |
parent | d38aec6e4f0ffea34a3f46d0148c69a69408e699 (diff) | |
download | aspectj-29f7bfab4410cc182e760475ba6e71c2a62c3c47.tar.gz aspectj-29f7bfab4410cc182e760475ba6e71c2a62c3c47.zip |
fixed accidental capture of StringBuffer.append(int)
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/ArgsAlone.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/ArgsAlone.java b/tests/new/ArgsAlone.java index 89b3736d6..61c868efe 100644 --- a/tests/new/ArgsAlone.java +++ b/tests/new/ArgsAlone.java @@ -22,7 +22,7 @@ aspect Aspect { || execution(void TargetClass.callInt(int))); before(int i) - : !target(Aspect) && args(i) + : !target(Aspect) && args(i) && !target(StringBuffer) //&& pc() // uncomment to avoid InternalCompilerError { Tester.event("within " + i |