summaryrefslogblamecommitdiff
path: root/test/files/pos/t2429.scala
blob: 266baa3c2c4f8214316f57a94a02702e07eaec35 (plain) (tree)




















                                                                         
object Msg {
  trait T

  trait TSeq

  object TSeq {
    implicit def fromSeq(s: Seq[T]): TSeq = error("stub")
  }

  def render {
    val msgs: TSeq = (List[(Any, Any)]().flatMap {
      case (a, b) => {
        a match {
          case _ => b match {
            case _ => error("stub")
          }
        }
      }
    } /*: Seq[T] Adding this type annotation avoids the compile error.*/)
  }
}