diff options
author | aclement <aclement> | 2005-11-21 16:33:56 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-21 16:33:56 +0000 |
commit | 9ed75a10abaca8a6c8569ead1b74eaaadc980b07 (patch) | |
tree | 27f281b892b5cb06e54525f29bc1f9fea4960a3f /tests/bugs150 | |
parent | d58439272e0c8bd5d818c80161df9d0ba520e5b9 (diff) | |
download | aspectj-9ed75a10abaca8a6c8569ead1b74eaaadc980b07.tar.gz aspectj-9ed75a10abaca8a6c8569ead1b74eaaadc980b07.zip |
test and fix for 115607 (declare @type): patch from helen.
Diffstat (limited to 'tests/bugs150')
-rw-r--r-- | tests/bugs150/pr115607.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs150/pr115607.java b/tests/bugs150/pr115607.java new file mode 100644 index 000000000..dfbcd28b7 --- /dev/null +++ b/tests/bugs150/pr115607.java @@ -0,0 +1,7 @@ +@interface I {} + +class Simple {} + +public aspect pr115607 { + declare @type: Simple : @I; +}
\ No newline at end of file |