summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2008-03-20 00:12:10 +0000
committeraclement <aclement>2008-03-20 00:12:10 +0000
commit75d917cdcf62a4c81befbfd535e38bb2b80a6466 (patch)
tree1f1e3a03d50f3d986c43eefbd76e45335973a9ac /tests
parent1a370e866856f56916cd7816b41b936f75a3e338 (diff)
downloadaspectj-75d917cdcf62a4c81befbfd535e38bb2b80a6466.tar.gz
aspectj-75d917cdcf62a4c81befbfd535e38bb2b80a6466.zip
164356: test and fix: ajdoc
Diffstat (limited to 'tests')
-rw-r--r--tests/bugs153/pr164356/C.java21
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() {
+ }
+
+}