aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr148027/A.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model/pr148027/A.aj')
-rw-r--r--tests/model/pr148027/A.aj15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/model/pr148027/A.aj b/tests/model/pr148027/A.aj
new file mode 100644
index 000000000..306f14b68
--- /dev/null
+++ b/tests/model/pr148027/A.aj
@@ -0,0 +1,15 @@
+package pkg;
+
+public aspect A {
+
+ before() : C.pointcutInClass() {
+ }
+
+ pointcut pointcutInAspect() : execution(void aMethod());
+
+ before() : pointcutInAspect() {
+ }
+
+ public void aMethod() {
+ }
+}