diff options
author | aclement <aclement> | 2005-12-21 09:04:53 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-12-21 09:04:53 +0000 |
commit | d21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f (patch) | |
tree | 890584ff80e312b9c902ab7131e5dbde673be2ff /ajdoc/testdata/pr119453/src/pack/A.aj | |
parent | 6c67bc69e2052ea82b1ea0e7b415ba710d1e3c19 (diff) | |
download | aspectj-d21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f.tar.gz aspectj-d21b27a4ec70fe7dbb4b38a42ff6015ec4cde16f.zip |
testcode for 119453
Diffstat (limited to 'ajdoc/testdata/pr119453/src/pack/A.aj')
-rw-r--r-- | ajdoc/testdata/pr119453/src/pack/A.aj | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ajdoc/testdata/pr119453/src/pack/A.aj b/ajdoc/testdata/pr119453/src/pack/A.aj new file mode 100644 index 000000000..2a4a61a9d --- /dev/null +++ b/ajdoc/testdata/pr119453/src/pack/A.aj @@ -0,0 +1,19 @@ +package pack; + +public aspect A { + + private int C.y = 3; + + /** + * blah + */ + public String C.m(){return "";}; + + public C.new(String s){ this();}; + + pointcut p() : execution(* *.*(..)); + + before() : p() { + } + +} |