diff options
Diffstat (limited to 'tests/model/pr148027/A.aj')
-rw-r--r-- | tests/model/pr148027/A.aj | 15 |
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() { + } +} |