Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/privateForMembers.kt.after

10 lines
221 B
Plaintext
Vendored

// "Create function 'foo'" "true"
class A {
fun test() {
foo()
}
private fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}