Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/afterQualifiedCallInStringTemplateRuntime.kt

11 lines
263 B
Kotlin

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