Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/io/print3.kt.after
T

8 lines
120 B
Plaintext
Vendored

// WITH_RUNTIME
import java.lang.System.out
fun x() {
listOf("")
.take(10)
.forEach { print(it) }
}