Given a case class and companion object like below:
case class Example(a: String)
object Example {
implicit def concat(b: String): Example =
Example(this.a + b)
}
How to make the implicit method compile? In other words, is it possible to refer to the current instance that the implicit method has been called upon?