Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/valOnLibObject.kt.after
T
Dmitry Gridin c89d1af9fa Improve Create property from Usage
Place generated property next to other properties
 #KT-14886 Fixed
2019-02-27 00:07:55 +03:00

12 lines
260 B
Plaintext
Vendored

// "Create extension property 'Unit.foo'" "true"
// WITH_RUNTIME
private val Unit.foo: Int
get() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
fun test() {
val a: Int = Unit.foo
}