I have the following scenario:
case class B(v: String)
case class A(bs: Seq[B])
extension(a: A)
def doit() = a.bs.map(_.doit()) // here is the exception
extension(b: B)
def doit() = println("OK: ${b.v}")
This gives me the following exception on compilation:
value doit is not a member of B.
An extension method was tried, but could not be fully constructed:
_$1
Are there restrictions in the naming of extension methods in Scala 3?
See the example here on Scastie
Turning the comment into an answer, the spec says both extensions are translated to
def extension_doit
.Calling the extension method explicitly:
This is the same error seen with debug of the original example:
Overload resolution was explicitly improved or extended to handle this normal case of overloads which may be differentiated only in later parameter lists. So apparently we are supposed to be aware that the desugared form is overloaded.
Scala 2 also complains: