/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
- object Test extends Application {
- 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()"
- }