7 lines
190 B
Kotlin
Vendored
7 lines
190 B
Kotlin
Vendored
import kotlin.properties.ReadWriteProperty
|
|
import kotlin.properties.Delegates
|
|
|
|
class C {
|
|
val `x$delegate`: ReadWriteProperty<Any, Any>? = null
|
|
val x: String? by Delegates.notNull()
|
|
} |