summaryrefslogtreecommitdiff
path: root/test/files/run/t3452b/S_1.scala
blob: 3ab19ed031d56543050f720b29a1f7ebd4f12439 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
trait Search[M] {
  def search(input: M): C[Int] = {
    println("Search received: " + input)
    null
  }
}

object StringSearch extends Search[String]

trait C[T]