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

10 lines
156 B
Plaintext
Vendored

// "Create function 'g'" "true"
class C {
internal inline fun f() {
g()
}
private fun g() {
TODO("Not yet implemented")
}
}