46907f861a
#KT-29364 Fixed
9 lines
126 B
Kotlin
Vendored
9 lines
126 B
Kotlin
Vendored
fun foo(f: (Int) -> Int) {}
|
|
|
|
fun test() {
|
|
foo { it ->
|
|
it + 1
|
|
|
|
<caret><selection>it + 1</selection>
|
|
}
|
|
} |