Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/nullableReceiver.kt.after
T
2019-11-13 08:37:25 +09:00

9 lines
188 B
Plaintext
Vendored

// "Create extension function 'String?.notExistingFun'" "true"
fun context(p: String?) {
p.notExistingFun()
}
private fun String?.notExistingFun() {
TODO("Not yet implemented")
}