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

9 lines
118 B
Kotlin
Vendored

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