Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/nestedLambdaWithReceiver.kt
T
2017-03-14 18:45:04 +03:00

9 lines
122 B
Kotlin
Vendored

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