|
Scala example source code file (bug3964.scala)
The Scala bug3964.scala source code
object Test {
class Base
object Bob extends Base
class Foo { def bippy = 42 }
class Oof { def bippy = -21 }
// I am more specific than you
implicit def f1(x: Bob.type): Foo = new Foo
implicit def f2(x: Base): Oof = new Oof
def main(args: Array[String]): Unit = {
// this would of course print an unambiguous 42
println(Bob.bippy)
println((new Base).bippy)
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala bug3964.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.