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

10 lines
173 B
Plaintext
Vendored

// "Create extension property 'Unit.foo'" "true"
// ERROR: Property must be initialized
// WITH_RUNTIME
private val Unit.foo: Int
fun test() {
val a: Int = Unit.foo
}