Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/qualifiedCallInStringTemplateRuntime.kt.after
2016-07-20 15:39:19 +03:00

11 lines
241 B
Plaintext
Vendored

// "Create member function 'A.foo'" "true"
class A {
fun foo(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
fun test() {
println("a = ${A().foo()}")
}