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

9 lines
132 B
Kotlin
Vendored

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