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

5 lines
98 B
Kotlin
Vendored

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