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

10 lines
133 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun test() {
println("a = ${foo()}")
}
fun foo(): String {
TODO("Not yet implemented")
}