Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/nullableReceiver.kt.after
T
2018-05-11 16:05:19 +03:00

12 lines
304 B
Plaintext
Vendored

// "Create extension property 'String?.notExistingVal'" "true"
fun foo(n: Int) {}
fun context(p: String?) {
foo(p.notExistingVal)
}
private val String?.notExistingVal: Int
get() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}