Files
kotlin-fork/libraries/stdlib/test/regressions/Kt1617Test.kt
T
2014-03-19 20:25:15 +04:00

18 lines
370 B
Kotlin

package regressions
// TODO comment out the next line to reproduce KT-1617
//import kotlin.util.map
import java.io.File
import junit.framework.TestCase
class Kt1617Test: TestCase() {
fun testMapFunction() {
val coll: Collection<String> = arrayListOf("foo", "bar")
val files = coll.map{ File(it) }
println("Found files: $files")
}
}