summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/implicits-elimination-res.scala
blob: 68743aee0693900fef82e1d84a266a0a891a73c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
/**
 *  Testing scaladoc implicits elimination
 */
package scala.test.scaladoc.implicits.elimination {
  /** No conversion, as B doesn't bring any member */
  class A
  class B { class C; trait V; type T; }
  object A { implicit def toB(a: A): B = null }
}