summaryrefslogtreecommitdiffstats
path: root/tests/new/ArgsAlone.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/ArgsAlone.java')
-rw-r--r--tests/new/ArgsAlone.java2
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