diff options
author | aclement <aclement> | 2006-08-22 08:20:36 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-22 08:20:36 +0000 |
commit | 50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (patch) | |
tree | 75ca9caf60a4a9bd592b162dbc79146188fe1fc6 /tests/model/pr115607 | |
parent | 8b393cc90d5d63171154713e5a73044a1a2fddaf (diff) | |
download | aspectj-50f8ecc4339442c7abaf4d3a9995c1434b768ef2.tar.gz aspectj-50f8ecc4339442c7abaf4d3a9995c1434b768ef2.zip |
refactored tests for 154552 - use new model testing structure
Diffstat (limited to 'tests/model/pr115607')
-rw-r--r-- | tests/model/pr115607/pr115607.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/model/pr115607/pr115607.java b/tests/model/pr115607/pr115607.java new file mode 100644 index 000000000..3b40e4ca4 --- /dev/null +++ b/tests/model/pr115607/pr115607.java @@ -0,0 +1,7 @@ +@interface I {} + +class Simple {} + +public aspect pr115607 { + declare @type: Simple : @I; +} |