diff options
author | jhugunin <jhugunin> | 2002-12-18 01:39:44 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-18 01:39:44 +0000 |
commit | d0c3d7161fcfe44ddf7a0edf3eb701f72235a9a7 (patch) | |
tree | c227ae2f208d0ba818e057eaf813e1cc263aecea /tests/base | |
parent | bf459dfaf201caeaf3e099408a11e08cd542c752 (diff) | |
download | aspectj-d0c3d7161fcfe44ddf7a0edf3eb701f72235a9a7.tar.gz aspectj-d0c3d7161fcfe44ddf7a0edf3eb701f72235a9a7.zip |
can't use type patterns in target
Diffstat (limited to 'tests/base')
-rw-r--r-- | tests/base/test131/Driver.java | 4 |
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; } |