Closed
Description
See scala/collection-strawman#145 (comment) and scala/scala3#2573 for motivation.
The following should be enough:
def empty: CC[A] = iterableFactory.empty[A]
Or maybe:
def empty: C = fromSpecificIterable(iterableFactory.empty[A])