From 075f52f696a1cd2606a36de266922c6e49e80a5d Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Tue, 29 Jan 2019 19:53:32 +0100 Subject: [PATCH] Fix build: ImplicitConverter has been renamed Conversion --- tests/pos/i2339.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pos/i2339.scala b/tests/pos/i2339.scala index 25afa8254b64..9d0daef807c3 100644 --- a/tests/pos/i2339.scala +++ b/tests/pos/i2339.scala @@ -1,6 +1,6 @@ import scala.collection.mutable -case class Foo[K, V]()(implicit conv: ImplicitConverter[V, Ordered[V]]) +case class Foo[K, V]()(implicit conv: Conversion[V, Ordered[V]]) extends mutable.HashMap[K,V] { val a = this.toSeq.sortWith { case ((_, v1), (_, v2)) => v1 > v2 }