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

9 lines
123 B
Kotlin
Vendored

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