Created
November 8, 2016 14:25
-
-
Save propensive/5c03fe85a3ea9558d5726efb2691cdcd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Welcome to Scala 2.12.0-M5 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_45). | |
Type in expressions for evaluation. Or try :help. | |
scala> case class Foo(x: Int) | |
defined class Foo | |
scala> object Bar { | |
| implicit val foo: Foo = Foo(1) | |
| object Baz { | |
| implicit val foo: Foo = Foo(2) | |
| println(implicitly[Foo]) | |
| } | |
| } | |
defined object Bar | |
scala> Bar.Baz | |
Foo(2) | |
res0: Bar.Baz.type = Bar$Baz$@7ff35a3f | |
scala> object Bar { | |
| implicit val foo: Foo = Foo(1) | |
| object Baz { | |
| implicit val foo2: Foo = Foo(2) | |
| println(implicitly[Foo]) | |
| } | |
| } | |
<console>:17: error: ambiguous implicit values: | |
both value foo in object Bar of type => Foo | |
and value foo2 in object Baz of type => Foo | |
match expected type Foo | |
println(implicitly[Foo]) | |
^ | |
scala> :quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment