diff options
author | aclement <aclement> | 2006-08-22 10:34:01 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-22 10:34:01 +0000 |
commit | 41af7600c8661ff5b7a66a1e97fb865b562bc296 (patch) | |
tree | 0cec4f89a289cdc7e8bc71de9113c72db2503100 /tests/bugs150/pr77269/pack | |
parent | 50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (diff) | |
download | aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.tar.gz aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.zip |
code has moved into model area...154552, comment 3
Diffstat (limited to 'tests/bugs150/pr77269/pack')
-rw-r--r-- | tests/bugs150/pr77269/pack/pr77269.aj | 24 | ||||
-rw-r--r-- | tests/bugs150/pr77269/pack/pr77269c.aj | 19 |
2 files changed, 0 insertions, 43 deletions
diff --git a/tests/bugs150/pr77269/pack/pr77269.aj b/tests/bugs150/pr77269/pack/pr77269.aj deleted file mode 100644 index 014c1bed8..000000000 --- a/tests/bugs150/pr77269/pack/pr77269.aj +++ /dev/null @@ -1,24 +0,0 @@ -package pack; -class Test { - - public void testMethod() { - new Runnable() { - public void run() { - } - }; - class C { - public void m(){ - } - } - } - -} - -aspect A { - - pointcut p() : execution(* run(..)); - - before() : p() { - } - -} diff --git a/tests/bugs150/pr77269/pack/pr77269c.aj b/tests/bugs150/pr77269/pack/pr77269c.aj deleted file mode 100644 index 948902347..000000000 --- a/tests/bugs150/pr77269/pack/pr77269c.aj +++ /dev/null @@ -1,19 +0,0 @@ -package pack; - -class Test { - - public void testMethod() { - new Runnable() { - public void run() { - someMethod(); - } - }; - } - - public void someMethod() { - } -} - -aspect A { - declare warning : call(void someMethod(..)) : "blah blah blah"; -} |