diff options
author | aclement <aclement> | 2004-08-02 13:43:43 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-08-02 13:43:43 +0000 |
commit | 7f19ab47a3df5327c6246420354089d1db1c765f (patch) | |
tree | 79d1f7a2e5846953314175e3a8680d45bf6dfb97 /tests/ajcTests.xml | |
parent | 9aed31d18e3848c72c6963dc3a6ee4661a79add9 (diff) | |
download | aspectj-7f19ab47a3df5327c6246420354089d1db1c765f.tar.gz aspectj-7f19ab47a3df5327c6246420354089d1db1c765f.zip |
Fix for Bugzilla Bug 67774
Nullpointer-exception in pointcuts using withincode() clause
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 8b42152d3..e7031e59c 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -7832,4 +7832,12 @@ </compile> </ajc-test> + <ajc-test dir="bugs" + pr="67774" title="Nullpointer-Exception when defining a withincode() pointcut"> + <compile files="WithincodeNPE01.java"> + <!-- there are 3 join points that result in decw match, but 2 are on the same line! --> + <message kind="warning" line="2" text="In String ctor"/> + <message kind="warning" line="11" text="In String ctor"/> + </compile> + </ajc-test> </suite> |