Files
kotlin-fork/idea/testData/inspectionsLocal/redundantLambdaArrow/forEachWithIt.kt.after
T
2018-12-11 16:42:03 +03:00

7 lines
102 B
Plaintext
Vendored

// WITH_RUNTIME
fun println(s: String) {}
fun test() {
listOf(1, 2, 3).forEach { println(it) }
}