Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/localValDelegateRuntime.kt.after
T
2016-08-18 19:15:38 +03:00

11 lines
196 B
Plaintext
Vendored

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