9dfc92c55e
#KT-16992 Fixed #KT-13013 In Progress
5 lines
129 B
Plaintext
Vendored
5 lines
129 B
Plaintext
Vendored
// FILE: before.kt
|
|
fun test(a: (Int) -> Unit = { <caret>it }) {}
|
|
|
|
// FILE: after.kt
|
|
fun test(a: (Int) -> Unit = {<caret> it }) {} |