/test/files/run/bug298.scala

http://github.com/scala-incubator/modularisation · Scala · 17 lines · 10 code · 7 blank · 0 comment · 0 complexity · ff9ce4d4ba60525dcbf5a772ef8fe776 MD5 · raw file

  1. object Test extends Application {
  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. }