aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr130722/test1/PointcutProvider.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152/pr130722/test1/PointcutProvider.aj')
-rw-r--r--tests/bugs152/pr130722/test1/PointcutProvider.aj9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs152/pr130722/test1/PointcutProvider.aj b/tests/bugs152/pr130722/test1/PointcutProvider.aj
new file mode 100644
index 000000000..7bae7adce
--- /dev/null
+++ b/tests/bugs152/pr130722/test1/PointcutProvider.aj
@@ -0,0 +1,9 @@
+package test1;
+
+import test.Test;
+public aspect PointcutProvider {
+
+ public pointcut test(): execution(* Test.*(..));
+}
+
+