diff options
author | aclement <aclement> | 2006-07-26 15:01:31 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-07-26 15:01:31 +0000 |
commit | 9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b (patch) | |
tree | b93c4a9d8fb6acf330a36490de33997f0b25f781 /tests/features153/pipelining/AtAJAspect.java | |
parent | 06f5e354a7f278ea16e6ea6b76d137e1e9487f55 (diff) | |
download | aspectj-9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b.tar.gz aspectj-9fcd1e6ce6ec27d7b3db919e1b3605e190b31d3b.zip |
pipeline changes: testcode
Diffstat (limited to 'tests/features153/pipelining/AtAJAspect.java')
-rw-r--r-- | tests/features153/pipelining/AtAJAspect.java | 7 |
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() { } +} |