diff options
author | aclement <aclement> | 2008-03-20 00:12:10 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-03-20 00:12:10 +0000 |
commit | 75d917cdcf62a4c81befbfd535e38bb2b80a6466 (patch) | |
tree | 1f1e3a03d50f3d986c43eefbd76e45335973a9ac /tests/bugs153/pr164356 | |
parent | 1a370e866856f56916cd7816b41b936f75a3e338 (diff) | |
download | aspectj-75d917cdcf62a4c81befbfd535e38bb2b80a6466.tar.gz aspectj-75d917cdcf62a4c81befbfd535e38bb2b80a6466.zip |
164356: test and fix: ajdoc
Diffstat (limited to 'tests/bugs153/pr164356')
-rw-r--r-- | tests/bugs153/pr164356/C.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/bugs153/pr164356/C.java b/tests/bugs153/pr164356/C.java new file mode 100644 index 000000000..3d52ddb64 --- /dev/null +++ b/tests/bugs153/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() { + } + + //******* + public void goo() { + } + +} |