Then in the hosting class we’re going to have: ```...
# language-proposals
m
Then in the hosting class we’re going to have:
Copy code
private var test$delegate$value: T? = null
  get() {
    return field ?: throw IllegalStateException("Property test should be initialized before get.”)
  }
  set(value) {
    field = value
  }