Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/valOnLibObject.kt.after
T
2016-07-20 15:39:13 +03:00

10 lines
165 B
Plaintext
Vendored

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