From 2233cf023bce0168435795ab5747dae59fbd9a0d Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Thu, 3 Sep 2015 14:19:10 -0700 Subject: 307147: missing joinpoints for itds invoking private methods --- tests/bugs187/307147/TestAspect.aj | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/bugs187/307147/TestAspect.aj (limited to 'tests/bugs187/307147/TestAspect.aj') 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(); + } +} -- cgit v1.2.3