Closed as not planned
Description
It works globally but not with the obvious syntax.
scala> import Predef.{any2stringadd => _, _} ; new Object() + " argh"
import Predef.{any2stringadd=>_, _}
res1: String = java.lang.Object@32120956 argh
scala> import Predef.{any2stringadd => _, _}
import Predef.{any2stringadd=>_, _}
scala> new Object() + " argh"
<console>:14: error: value + is not a member of Object
new Object() + " argh"
^