aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187/307147/TestAspect.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs187/307147/TestAspect.aj')
-rw-r--r--tests/bugs187/307147/TestAspect.aj8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs187/307147/TestAspect.aj b/tests/bugs187/307147/TestAspect.aj
new file mode 100644
index 000000000..cf53868e3
--- /dev/null
+++ b/tests/bugs187/307147/TestAspect.aj
@@ -0,0 +1,8 @@
+package test;
+
+public aspect TestAspect {
+ Object around(): call(* Test.*(..)) {
+ System.out.println("Around " + thisJoinPoint.toString());
+ return proceed();
+ }
+}