|
Scala example source code file (bug298.scala)
The Scala bug298.scala source code
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()"
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala bug298.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.