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

10 lines
159 B
Plaintext
Vendored

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