aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base
diff options
context:
space:
mode:
Diffstat (limited to 'tests/base')
-rw-r--r--tests/base/test131/Driver.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/base/test131/Driver.java b/tests/base/test131/Driver.java
index 752224626..0592844b4 100644
--- a/tests/base/test131/Driver.java
+++ b/tests/base/test131/Driver.java
@@ -32,12 +32,12 @@ aspect TopAdvice {
return result+10;
}
- int around(): target(p1.*) && call(int *()) {
+ int around(): call(int p1.*.*()) {
int result = proceed();
return result+100;
}
- int around(): target(p1..*) && call(int *()) {
+ int around(): call(int p1..*.*()) {
int result = proceed();
return result+1000;
}