Say we have the following two traits:
trait Foo[A] { def howMany(xs: List[A]) = xs.size } trait Bar
And an implicit conversion from the second
This, while ugly, appears to work:
(bar: Foo[Int]) howMany stuff