Is it not possible to use class delegation on prop...
# getting-started
k
Is it not possible to use class delegation on properties not given in the constructor? like
Copy code
class Betterlist<E>: List<E> by backingList {
    val backingList = listOf<E>()
}