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

7 lines
104 B
Kotlin

// "Create function 'foo'" "true"
fun run<T>(f: () -> T) = f()
fun test() {
run { <caret>foo() }
}