diff options
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() { + } + +} |