以下Kotlin源文件使用Intellij IDEA 2018.3.1中的Kotlin 1.3.11插件编译并运行良好。但是,它无法在Kotlin命令行编译器中编译,并给出以下消息。代码是否有问题,或者我是否缺少类路径依赖项或其他内容?
C:\tmp>type Main.kt
import java.nio.file.Files
import java.nio.file.Paths
fun main() {
Files.lines(Paths.get("t.txt"))
.use { lines -> lines.forEach { println(it) } }
}
C:\tmp>kotlinc -version
info: kotlinc-jvm 1.3.11 (JRE 1.8.0_192-b12)
C:\tmp>kotlinc Main.kt
Main.kt:6:14: error: unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
@InlineOnly public inline fun <T : Closeable?, R> ???.use(block: (???) -> ???): ??? defined in kotlin.io
.use { lines -> lines.forEach { println(it) } }
^
Main.kt:6:20: error: cannot infer a type for this parameter. Please specify it explicitly.
.use { lines -> lines.forEach { println(it) } }
^
Main.kt:6:35: error: cannot choose among the following candidates without completing type inference:
@HidesMembers public inline fun <T> Iterable<???>.forEach(action: (???) -> Unit): Unit defined in kotlin.collections
@HidesMembers public inline fun <K, V> Map<out ???, ???>.forEach(action: (Map.Entry<???, ???>) -> Unit): Unit defined in kotlin.collections
.use { lines -> lines.forEach { println(it) } }
^
Main.kt:6:53: error: unresolved reference: it
.use { lines -> lines.forEach { println(it) } }
^
C:\tmp>