Skip to content

Commit fb60346

Browse files
authored
Merge pull request #5818 from dotty-staging/fix/build
Fix build: ImplicitConverter has been renamed Conversion
2 parents 923fb06 + 075f52f commit fb60346

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pos/i2339.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import scala.collection.mutable
22

3-
case class Foo[K, V]()(implicit conv: ImplicitConverter[V, Ordered[V]])
3+
case class Foo[K, V]()(implicit conv: Conversion[V, Ordered[V]])
44
extends mutable.HashMap[K,V] {
55

66
val a = this.toSeq.sortWith { case ((_, v1), (_, v2)) => v1 > v2 }

0 commit comments

Comments
 (0)