summaryrefslogblamecommitdiff
path: root/test/scaladoc/run/t8407.scala
blob: 2df9f4f1aca8c79abd9d9d9dac3435fca7a3a624 (plain) (tree)



















                                              
import scala.tools.nsc.doc.model._
import scala.tools.partest.ScaladocModelTest

object Test extends ScaladocModelTest {
  override def code = """
class C {
  /**
   *  @usecase def zipWithIndex: $NotFound
   *
   */
  def zipWithIndex: Int = ???
}
  """

  def scaladocSettings = ""

  def testModel(root: Package) = {
    // just testing that it doesn't error out.
  }
}