diff options
author | aclement <aclement> | 2008-03-20 00:12:46 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-03-20 00:12:46 +0000 |
commit | d4d6cf4b6d2ee80c9ec23d36ee2f1158737bb6ab (patch) | |
tree | a42cd1e0e280e1ee3dea5cb8f2295b8d3822d11d /ajdoc/testdata | |
parent | 331316fef7cc6c6ba77fd0ed63aaed630acaae28 (diff) | |
download | aspectj-d4d6cf4b6d2ee80c9ec23d36ee2f1158737bb6ab.tar.gz aspectj-d4d6cf4b6d2ee80c9ec23d36ee2f1158737bb6ab.zip |
164356: test and fix: ajdoc
Diffstat (limited to 'ajdoc/testdata')
-rw-r--r-- | ajdoc/testdata/pr164356/C.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ajdoc/testdata/pr164356/C.java b/ajdoc/testdata/pr164356/C.java new file mode 100644 index 000000000..cb3891efb --- /dev/null +++ b/ajdoc/testdata/pr164356/C.java @@ -0,0 +1,21 @@ +public class C { + + // foo's ordinary comment + /** + * description of foo + */ + public void foo() { + } + + //************ + /** + * description of bar + */ + public void bar() { + } + + //******* description of goo + public void goo() { + } + +} |