summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj')
-rw-r--r--tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj b/tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj
new file mode 100644
index 000000000..15226f227
--- /dev/null
+++ b/tests/bugs153/pr132080/AbstractSuperAspectWithAround.aj
@@ -0,0 +1,9 @@
+public abstract aspect AbstractSuperAspectWithAround {
+
+ protected abstract pointcut scope ();
+
+ void around () : execution(public static void main(String[])) && scope() {
+ System.out.println("? " + thisJoinPoint.getSignature());
+ proceed();
+ }
+}