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

11 lines
165 B
Plaintext
Vendored

// "Create member property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
object A {
val foo: Int
}
fun test() {
val a: Int = A.foo
}