aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features153/pipelining/AtInnerAJAspect.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features153/pipelining/AtInnerAJAspect.java')
-rw-r--r--tests/features153/pipelining/AtInnerAJAspect.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/features153/pipelining/AtInnerAJAspect.java b/tests/features153/pipelining/AtInnerAJAspect.java
new file mode 100644
index 000000000..7f0693806
--- /dev/null
+++ b/tests/features153/pipelining/AtInnerAJAspect.java
@@ -0,0 +1,9 @@
+import org.aspectj.lang.annotation.*;
+
+public class AtInnerAJAspect {
+ @Aspect
+ public static class SimpleAspect {
+ @Before("staticinitialization(*)")
+ public void m() { }
+ }
+}