/test/files/run/bug298.scala

http://github.com/greedy/scala-llvm · Scala · 17 lines · 10 code · 7 blank · 0 comment · 0 complexity · caea0f0ac7b0df36aad3df5c241ac642 MD5 · raw file

  1. object Test extends App {
  2. implicit def anyList[T]: List[T] = Nil
  3. implicit def intList: List[Int] = 42::24::Nil
  4. def foo[T](implicit x: T) = x
  5. val s = foo[List[Int]]
  6. println(s) // correct - prints "List(42, 24)"
  7. implicit def tupleList[T](implicit t: List[T]): List[(T,T)] = t.map(x => (x,x))
  8. val t = foo[List[Tuple2[Int,Int]]]
  9. println(t) // incorrect - prints "List()"
  10. }