summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/SI_5054_q3.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #5054, #5287Vlad Ureche2011-12-081-0/+9
The documents with use cases should be restructured like: /** * 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