summaryrefslogtreecommitdiff
path: root/test/files/pos/nothing_manifest_disambig-new.scala
blob: a60b0fdbf825bae03caf732a8492a39a27ef90ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test {
  def mani[T: TypeTag](xs: T) = xs
  mani(List())

  def listElMani[T: TypeTag](xs: List[T]) = xs
  listElMani(List())

  def foo[A, C](m : C)(implicit ev: C <:< Traversable[A], mani: TypeTag[A]): (C, A, TypeTag[A]) = (m, m.head, mani)
  foo(List(1,2,3))
}