Files
kotlin-fork/idea/testData/navigation/gotoDeclaration/itInLambdaAsDefaultArgument.test
T
Nikolay Krasko 9dfc92c55e Navigate to lambda declaration from generated 'it' (KT-16992)
#KT-16992 Fixed
 #KT-13013 In Progress
2017-03-23 13:37:05 +03:00

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 }) {}