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

7 lines
105 B
Kotlin
Vendored

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