aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features153/pipelining
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-28 14:05:39 +0000
committeraclement <aclement>2006-07-28 14:05:39 +0000
commitaf9e8ba799feb154ffbd40c190b42f6b01ec3109 (patch)
tree40ec7a0b2bc9734b930b95662c6f5066db9e26d5 /tests/features153/pipelining
parent68c36e3ac9b5fc031a956800158aee15b0d44301 (diff)
downloadaspectj-af9e8ba799feb154ffbd40c190b42f6b01ec3109.tar.gz
aspectj-af9e8ba799feb154ffbd40c190b42f6b01ec3109.zip
pipeline changes: fix for deep nesting aspects
Diffstat (limited to 'tests/features153/pipelining')
-rw-r--r--tests/features153/pipelining/DeepAspect.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/features153/pipelining/DeepAspect.java b/tests/features153/pipelining/DeepAspect.java
new file mode 100644
index 000000000..b767ed213
--- /dev/null
+++ b/tests/features153/pipelining/DeepAspect.java
@@ -0,0 +1,8 @@
+public class DeepAspect {
+ static class Inner {
+ static aspect SimpleAspect {
+ before(): staticinitialization(Cl*) {
+ }
+ }
+ }
+}