Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/itClash.kt.after
T

9 lines
139 B
Plaintext
Vendored

// IS_APPLICABLE: true
// WITH_RUNTIME
fun foo() {
listOf(1).forEach { (-it).let { arg -> it.bar(arg) } }
}
fun Int.bar(arg: Int) {
}