I\'m using a library which has a class Product like
Product
class Product { def toString() = \"Whatever\" }
I want to override th
Implicits are used if scala compiler cannot find method without it, so you can`t override methods with implicits. Use inheritance for this tasks.
class NewProduct extends Product { override def toString() = "an-other whatever" }