/* Compile with dotc implicits2.scala -Xprint:front -Xprint-types -verbose and verify that the inserted wrapString comes from Predef. You should see val x: .scala.collection.immutable.WrappedString = < (<"abc":java.lang.String("abc")>):scala.collection.immutable.WrappedString > */ object implicits2 { val x: scala.collection.immutable.WrappedString = "abc" }