summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/TestAdvice.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr132080/TestAdvice.aj')
-rw-r--r--tests/bugs153/pr132080/TestAdvice.aj5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs153/pr132080/TestAdvice.aj b/tests/bugs153/pr132080/TestAdvice.aj
new file mode 100644
index 000000000..f9f6453e4
--- /dev/null
+++ b/tests/bugs153/pr132080/TestAdvice.aj
@@ -0,0 +1,5 @@
+public aspect TestAdvice {
+ before () : execution(public new()) && within(!TestAdvice) {
+ System.out.println("? " + thisJoinPoint.getSignature());
+ }
+} \ No newline at end of file