Nice, this works: ``` class SpecialCollection<T...
# announcements
e
Nice, this works:
Copy code
class SpecialCollection<T> private constructor (private val collection: Collection<T>): Collection<T> by collection {
    constructor() : this(emptyList())
}
👍 1