Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/valOnLibObject.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
188 B
Plaintext
Vendored

// "Create extension property 'Unit.foo'" "true"
// WITH_RUNTIME
private val Unit.foo: Int
get() {
TODO("Not yet implemented")
}
fun test() {
val a: Int = Unit.foo
}