/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
- object Test extends App {
- implicit def anyList[T]: List[T] = Nil
- implicit def intList: List[Int] = 42::24::Nil
- def foo[T](implicit x: T) = x
- val s = foo[List[Int]]
- println(s) // correct - prints "List(42, 24)"
- implicit def tupleList[T](implicit t: List[T]): List[(T,T)] = t.map(x => (x,x))
- val t = foo[List[Tuple2[Int,Int]]]
- println(t) // incorrect - prints "List()"
- }