diff options
author | acolyer <acolyer> | 2004-03-15 17:27:56 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-03-15 17:27:56 +0000 |
commit | 01095341153b24fcf5ab5f537ecc77077819b1f1 (patch) | |
tree | fdb1eb96ddc1751bc999d350785bfc840c1172c8 /tests | |
parent | 0c2aca0df707e4ac1d8f83aee8eaaa47b982a40d (diff) | |
download | aspectj-01095341153b24fcf5ab5f537ecc77077819b1f1.tar.gz aspectj-01095341153b24fcf5ab5f537ecc77077819b1f1.zip |
fix for Bugzilla Bug 44272
retitle warning to "circular {advice} dependency at ..."
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ajcTests.xml | 9 | ||||
-rw-r--r-- | tests/bugs/CircularAdvicePrecedence.java | 13 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 2a5ab1733..d14bd19bd 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -7294,4 +7294,13 @@ <message kind="warning" line="6"/> </compile> </ajc-test> + + <ajc-test dir="bugs" pr="44272" + title="retitle warning to circular {advice} dependency at ..."> + <compile files="CircularAdvicePrecedence.java"> + <message kind="error" line="4"/> + <message kind="error" line="5"/> + <message kind="error" line="6"/> + </compile> + </ajc-test> </suite> diff --git a/tests/bugs/CircularAdvicePrecedence.java b/tests/bugs/CircularAdvicePrecedence.java new file mode 100644 index 000000000..99313c752 --- /dev/null +++ b/tests/bugs/CircularAdvicePrecedence.java @@ -0,0 +1,13 @@ +// bug 44272 +public aspect CircularAdvicePrecedence { + pointcut crun() : execution (void run()) ; + before() : crun() {} + after() returning : crun() {} + void around() : crun() { proceed(); } +} + +class Runner { + + public void run() {} + +}
\ No newline at end of file |