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

9 lines
260 B
Plaintext
Vendored

// "Create extension function 'String?.notExistingFun'" "true"
fun context(p: String?) {
p.notExistingFun()
}
private fun String?.notExistingFun() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}