forked from scala/scala
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request scala#5736 from adriaanm/t10206
SI-10206 tighten fix for SI-6889
- Loading branch information
Showing
4 changed files
with
43 additions
and
21 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
t6889.scala:16: error: the result type of an implicit conversion must be more specific than AnyRef | ||
def f(x: Dingo): AnyRef = x // fail - no conversion to AnyRef | ||
^ | ||
t6889.scala:17: error: an expression of type Null is ineligible for implicit conversion | ||
t6889.scala:17: error: the result type of an implicit conversion must be more specific than Object | ||
def f2(x: Dingo): Object = x // fail - no conversion to Object | ||
^ | ||
t6889.scala:18: error: an expression of type Null is ineligible for implicit conversion | ||
var x: Int = null // fail - no conversion from Null | ||
^ | ||
two errors found | ||
three errors found |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
class Foo(val bar: String) | ||
|
||
object Foo { | ||
implicit class Enrich(foo: Foo) { | ||
def clone(x: Int, y: Int): Int = x + y | ||
} | ||
} | ||
|
||
object Main extends App { | ||
val foo = new Foo("hello") | ||
println(foo.clone(1, 2)) // <- does not compile | ||
// the implicit view was being disqualified because a new check in the compiler | ||
// that implicit views must not target Any or AnyRef considered an implicit search | ||
// for `foo.type => ?{def clone: ?}` to targeted AnyRef. | ||
} |