aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr209019/case1/DurationMethod.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs154/pr209019/case1/DurationMethod.java')
-rw-r--r--tests/bugs154/pr209019/case1/DurationMethod.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs154/pr209019/case1/DurationMethod.java b/tests/bugs154/pr209019/case1/DurationMethod.java
new file mode 100644
index 000000000..6011c4ced
--- /dev/null
+++ b/tests/bugs154/pr209019/case1/DurationMethod.java
@@ -0,0 +1,5 @@
+package c.d;;
+
+public aspect DurationMethod extends AbstractDurationMethod {
+ public pointcut methods(): within(a.b.*) && call (public * a..*(..));
+}