Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/inLambda.kt.after
T

12 lines
223 B
Plaintext
Vendored

// "Create function 'foo'" "true"
fun <T> run(f: () -> T) = f()
fun test() {
run { foo() }
}
fun foo(): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}