diff options
Diffstat (limited to 'tests/features153/pipelining')
-rw-r--r-- | tests/features153/pipelining/DeepAspect.java | 8 |
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*) { + } + } + } +} |