summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI_5054_q7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/scaladoc/resources/SI_5054_q7.scala')
-rw-r--r--test/scaladoc/resources/SI_5054_q7.scala22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/scaladoc/resources/SI_5054_q7.scala b/test/scaladoc/resources/SI_5054_q7.scala
new file mode 100644
index 0000000000..26d4b5fcf4
--- /dev/null
+++ b/test/scaladoc/resources/SI_5054_q7.scala
@@ -0,0 +1,22 @@
+trait SI_5054_q7 {
+ /**
+ * The full definition, either used with an implicit value or with an explicit one.
+ *
+ * Some more explanation on implicits...
+ *
+ * @param lost a lost parameter
+ * @return some integer
+ * @usecase def test(): Int
+ *
+ * This takes the implicit value in scope.
+ *
+ * Example: `test()`
+ *
+ * @usecase def test(explicit: Int): Int
+ *
+ * This takes the explicit value passed.
+ *
+ * Example: `test(3)`
+ */
+ def test(implicit lost: Int): Int
+}