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

11 lines
169 B
Plaintext
Vendored

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