aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148027/A.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152/pr148027/A.aj')
-rw-r--r--tests/bugs152/pr148027/A.aj15
1 files changed, 0 insertions, 15 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() {
- }
-}