aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr158957/Tracing.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs153/pr158957/Tracing.aj')
-rw-r--r--tests/bugs153/pr158957/Tracing.aj6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs153/pr158957/Tracing.aj b/tests/bugs153/pr158957/Tracing.aj
new file mode 100644
index 000000000..5a974ad2e
--- /dev/null
+++ b/tests/bugs153/pr158957/Tracing.aj
@@ -0,0 +1,6 @@
+public aspect Tracing {
+
+ before () : PointcutLibrary.println() {
+ System.out.println("? " + thisJoinPointStaticPart.getSignature().getName());
+ }
+} \ No newline at end of file