summaryrefslogblamecommitdiff
path: root/test/scaladoc/resources/SI_5054_q7.scala
blob: 1bd120e30c61e405b1d56ebb986464bc4a183eba (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                                     
                              


                                            
                       
     
                                           


                                          
                        


                                   
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 test1(): Int
   *
   * This takes the implicit value in scope.
   *
   * Example: `test1()`
   * 
   * @usecase def test2(explicit: Int): Int
   * 
   * This takes the explicit value passed.
   *
   * Example: `test2(3)`
   */
  def test(implicit lost: Int): Int
}