summaryrefslogblamecommitdiff
path: root/test/files/pos/t8237b.scala
blob: 52bb310e8bffea50e45eb2bbbbae57746ba97259 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                
import scala.language.higherKinds
import scala.reflect.runtime.universe._
object Test {

  def fTt[A,E[X]<:List[X]](a: A)(implicit tt: TypeTag[E[A]]) = a

  trait TC[A]
  implicit def TCListInt[A]: TC[A] = ???
  fTt(1)
}