aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj')
-rw-r--r--tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj b/tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj
new file mode 100644
index 000000000..832255cb1
--- /dev/null
+++ b/tests/model/pr160469_1/AnnotationBeanConfigurerAspect.aj
@@ -0,0 +1,7 @@
+package pkg;
+
+public aspect AnnotationBeanConfigurerAspect extends AbstractBeanConfigurerAspect {
+
+ // pointcut is on line 6
+ protected pointcut beanCreation() : initialization(*.new(..)) && !within(pkg.*);
+}