PageRenderTime 66ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/tickets/298/a.scala

http://github.com/paulp/scala-issues-dev
Scala | 17 lines | 10 code | 7 blank | 0 comment | 0 complexity | 42ece917eb63332bfef5cdbb5910c71e MD5 | raw file
  1. object o 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. }