summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources
diff options
context:
space:
mode:
authorKonstantin Fedorov <k.a.feodorov@gmail.com>2014-01-31 17:56:29 +0400
committerKonstantin Fedorov <k.a.feodorov@gmail.com>2014-02-02 23:02:47 +0400
commit37a88afae92245e03d5b80ae0b59672a89f2d35d (patch)
tree0deee3c4ddbeeef1012e52fa9af62cb59eec9d26 /test/scaladoc/resources
parentfc15cfc2399661f1de7d91b2ca0f5d12f32bc708 (diff)
downloadscala-37a88afae92245e03d5b80ae0b59672a89f2d35d.tar.gz
scala-37a88afae92245e03d5b80ae0b59672a89f2d35d.tar.bz2
scala-37a88afae92245e03d5b80ae0b59672a89f2d35d.zip
SI-4014 Scaladoc omits @author
Diffstat (limited to 'test/scaladoc/resources')
-rw-r--r--test/scaladoc/resources/SI-4014_0.scala4
-rw-r--r--test/scaladoc/resources/SI-4014_1.scala5
-rw-r--r--test/scaladoc/resources/SI-4014_2.scala6
3 files changed, 15 insertions, 0 deletions
diff --git a/test/scaladoc/resources/SI-4014_0.scala b/test/scaladoc/resources/SI-4014_0.scala
new file mode 100644
index 0000000000..c398fcc1e0
--- /dev/null
+++ b/test/scaladoc/resources/SI-4014_0.scala
@@ -0,0 +1,4 @@
+/** A template without authors.
+ *
+ */
+trait Foo \ No newline at end of file
diff --git a/test/scaladoc/resources/SI-4014_1.scala b/test/scaladoc/resources/SI-4014_1.scala
new file mode 100644
index 0000000000..34386b515e
--- /dev/null
+++ b/test/scaladoc/resources/SI-4014_1.scala
@@ -0,0 +1,5 @@
+/** A template with one author.
+ *
+ * @author The Only Author
+ */
+trait Foo \ No newline at end of file
diff --git a/test/scaladoc/resources/SI-4014_2.scala b/test/scaladoc/resources/SI-4014_2.scala
new file mode 100644
index 0000000000..514f7a1e4c
--- /dev/null
+++ b/test/scaladoc/resources/SI-4014_2.scala
@@ -0,0 +1,6 @@
+/** A template with more than one author.
+ *
+ * @author The First Author
+ * @author The Second Author
+ */
+trait Foo \ No newline at end of file