You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defining a value of type ImplicitConverter doesn't emit a warning, like it does when defining an implicit conversion when scala.language.implicitConversions is not in scope.
objectO {
implicitdeffoo(x: Int):String= x.toString // Emits a warningimplicitvalbar:ImplicitConverter[Int, String] = _.toString // No warning
}