Files
kotlin-fork/idea/testData/wordSelection/ValueParametersInLambda4/4.kt
T
2020-06-11 12:20:32 +03:00

9 lines
126 B
Kotlin
Vendored

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