blob: 8b92e82019a68ef9c4bb11140d26eb92a5a61a07 [file]
// RUN_PIPELINE_TILL: BACKEND
// 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()
}
/* GENERATED_FIR_TAGS: classDeclaration, nullableType, propertyDeclaration, propertyDelegate */