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

9 lines
111 B
Plaintext
Vendored

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