Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funInInlineInternalFun.kt.after
T

10 lines
228 B
Plaintext
Vendored

// "Create function 'g'" "true"
class C {
internal inline fun f() {
g()
}
private fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}