summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr132130.aj
diff options
context:
space:
mode:
authoraclement <aclement>2006-08-22 10:34:01 +0000
committeraclement <aclement>2006-08-22 10:34:01 +0000
commit41af7600c8661ff5b7a66a1e97fb865b562bc296 (patch)
tree0cec4f89a289cdc7e8bc71de9113c72db2503100 /tests/bugs151/pr132130.aj
parent50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (diff)
downloadaspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.tar.gz
aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.zip
code has moved into model area...154552, comment 3
Diffstat (limited to 'tests/bugs151/pr132130.aj')
-rw-r--r--tests/bugs151/pr132130.aj17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/bugs151/pr132130.aj b/tests/bugs151/pr132130.aj
deleted file mode 100644
index 3259d7232..000000000
--- a/tests/bugs151/pr132130.aj
+++ /dev/null
@@ -1,17 +0,0 @@
- aspect basic {
-
- declare @method : * debit(..) : @Secured(role="supervisor");
- declare @constructor : BankAccount+.new(..) : @Secured(role="supervisor");
-}
-
-class BankAccount {
-
- public BankAccount(String s, int i) {
- }
- public void debit(long accId,long amount) {
- }
-}
-
-@interface Secured {
- String role();
-}