aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/tcpoly_infer_ticket474.scala
blob: 9012deb2b627da36801c8d887b7d37f7bacf23e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
trait Builder[C[_], T] {
  def +=(x: T): Unit
  def finalise: C[T]
}

trait Buildable[C[_]] {
  def builder[T]: Builder[C,T]
}

object Test {

  implicit object buildableList extends Buildable[List] {
    def builder[T] = new Builder[List,T] {
      val buf = new scala.collection.mutable.ListBuffer[T]
      def +=(x: T) = buf += x
      def finalise = buf.toList
    }
  }

  def foo[C[_],T](x: T)(implicit b: Buildable[C]): C[T] = {
    val builder = b.builder[T]
    builder += x
    builder.finalise
  }

  val l: List[Int] = foo(8)
}