aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153
diff options
context:
space:
mode:
authoraclement <aclement>2008-06-11 17:24:43 +0000
committeraclement <aclement>2008-06-11 17:24:43 +0000
commit71459e4052ad7022ad94d4f4eca55b2789e1b9a5 (patch)
tree7b929d21d05a89bad6e683e6c41936f34f5844dc /tests/bugs153
parent8d7f7e1d4ad5e302b60074db044636817ba4e5a5 (diff)
downloadaspectj-71459e4052ad7022ad94d4f4eca55b2789e1b9a5.tar.gz
aspectj-71459e4052ad7022ad94d4f4eca55b2789e1b9a5.zip
164340: ajdoc fix and test
Diffstat (limited to 'tests/bugs153')
-rw-r--r--tests/bugs153/pr164340/C.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/bugs153/pr164340/C.java b/tests/bugs153/pr164340/C.java
new file mode 100644
index 000000000..482dbf481
--- /dev/null
+++ b/tests/bugs153/pr164340/C.java
@@ -0,0 +1,15 @@
+public class C {
+
+ /**
+ * This is a constructor
+ */
+ public C() {
+ }
+
+ /**
+ * This is method foo
+ */
+ public void foo() {
+ }
+
+}