diff options
author | aclement <aclement> | 2006-08-08 15:37:36 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-08 15:37:36 +0000 |
commit | 07c2189bdb6d133886056ea1c02a302975f1e724 (patch) | |
tree | 4cc4f6305ac6257bca51072603aa0a42f8404f98 /tests/bugs153 | |
parent | 19fb4370af2db817a9baf239dfe7f0e55bc9995e (diff) | |
download | aspectj-07c2189bdb6d133886056ea1c02a302975f1e724.tar.gz aspectj-07c2189bdb6d133886056ea1c02a302975f1e724.zip |
test and fix for pr148219
Diffstat (limited to 'tests/bugs153')
-rw-r--r-- | tests/bugs153/PR148219/MyMessages.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs153/PR148219/MyMessages.java b/tests/bugs153/PR148219/MyMessages.java new file mode 100644 index 000000000..c359ca0c5 --- /dev/null +++ b/tests/bugs153/PR148219/MyMessages.java @@ -0,0 +1,8 @@ +public aspect MyMessages { + pointcut getResourceString(String key): args(key, ..) && + call (* *.getResourceString(String, ..)); + + String around(String key):getResourceString(key) { + return key; + } +}
\ No newline at end of file |