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

7 lines
115 B
Kotlin

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