blob: c09a0c3b024046e33d4885bb2889ed3e3376dfc2 [file]
// FIR_IDENTICAL
import kotlin.properties.ReadWriteProperty
import kotlin.properties.Delegates
class C {
val `x$delegate`: ReadWriteProperty<Any, Any>? = null
val x: String? by Delegates.notNull()
}