Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/localValDelegateRuntime.kt.after
T

11 lines
196 B
Plaintext
Vendored

import kotlin.properties.ReadOnlyProperty
// "Create property 'foo'" "true"
// ERROR: Property must be initialized
val foo: ReadOnlyProperty<Nothing?, Int>
fun test() {
val x: Int by foo
}