aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148027
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/bugs152/pr148027
parent50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (diff)
downloadaspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.tar.gz
aspectj-41af7600c8661ff5b7a66a1e97fb865b562bc296.zip
code has moved into model area...154552, comment 3
Diffstat (limited to 'tests/bugs152/pr148027')
-rw-r--r--tests/bugs152/pr148027/A.aj15
-rw-r--r--tests/bugs152/pr148027/C.aj10
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/bugs152/pr148027/A.aj b/tests/bugs152/pr148027/A.aj
deleted file mode 100644
index 306f14b68..000000000
--- a/tests/bugs152/pr148027/A.aj
+++ /dev/null
@@ -1,15 +0,0 @@
-package pkg;
-
-public aspect A {
-
- before() : C.pointcutInClass() {
- }
-
- pointcut pointcutInAspect() : execution(void aMethod());
-
- before() : pointcutInAspect() {
- }
-
- public void aMethod() {
- }
-}
diff --git a/tests/bugs152/pr148027/C.aj b/tests/bugs152/pr148027/C.aj
deleted file mode 100644
index 63b4e6cb6..000000000
--- a/tests/bugs152/pr148027/C.aj
+++ /dev/null
@@ -1,10 +0,0 @@
-package pkg;
-
-public class C {
-
- pointcut pointcutInClass() : execution(void cMethod());
-
- public void cMethod() {
-
- }
-}