Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/nestedLambda.kt
T

9 lines
124 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
listOf(1).forEach { run { <caret>bar(it) } }
}
fun bar(i: Int) {
}