summaryrefslogblamecommitdiff
path: root/test/files/pos/t2429.scala
blob: 3ea3f9e2a572b3b595172ef2f459061e86d94b52 (plain) (tree)
1
2
3
4
5

            
  
            
  















                                                                         



                                                             
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.*/)
  }
}
object Oops {
 implicit def someImplicit(s: Seq[_]): String = error("stub")
 def item: String = Nil map { case e: Any => e }
}