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

19 lines
207 B
Plaintext
Vendored

// "Create function 'foo'" "true"
class A {
val baz = 1
fun test() {
val a: A = foo()
}
private fun foo(): A {
TODO("Not yet implemented")
}
fun bar() {
}
}