summaryrefslogtreecommitdiffstats
path: root/tests/features153/pipelining/AtAJAspect.java
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-26 15:01:31 +0000
committeraclement <aclement>2006-07-26 15:01:31 +0000
commit9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b (patch)
treeb93c4a9d8fb6acf330a36490de33997f0b25f781 /tests/features153/pipelining/AtAJAspect.java
parent06f5e354a7f278ea16e6ea6b76d137e1e9487f55 (diff)
downloadaspectj-9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b.tar.gz
aspectj-9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b.zip
pipeline changes: testcode
Diffstat (limited to 'tests/features153/pipelining/AtAJAspect.java')
-rw-r--r--tests/features153/pipelining/AtAJAspect.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/features153/pipelining/AtAJAspect.java b/tests/features153/pipelining/AtAJAspect.java
new file mode 100644
index 000000000..a739761cc
--- /dev/null
+++ b/tests/features153/pipelining/AtAJAspect.java
@@ -0,0 +1,7 @@
+import org.aspectj.lang.annotation.*;
+
+@Aspect
+public class AtAJAspect {
+ @Before("staticinitialization(*)")
+ public void m() { }
+}