Files
kotlin-fork/idea/testData/wordSelection/ValueParametersInLambda/0.kt
T
2018-12-06 19:48:04 +03:00

5 lines
75 B
Kotlin
Vendored

fun foo(f: (Int) -> Int) {}
fun test() {
foo { <caret>it -> it + 1 }
}