Files
kotlin-fork/idea/testData/codeInsight/breadcrumbs/Lambdas.kt
T
Valentin Kipyatkov fcce1e3838 KT-12852 Support breadcrumbs for Kotlin
#KT-12852 Fixed
2016-09-13 17:46:16 +03:00

17 lines
485 B
Kotlin
Vendored

fun foo() {
buildString {
with(xxx) {
with(f()) Label@ {
g()?.let Label1@ {
listOf(1, 2, 3, 4, 5).filterTo(collection) { item ->
doIt() {
val v = Label2@ { p: Int ->
x(1, Label3@ { Something().apply { <caret> } })
}
}
}
}
}
}
}
}