我不知道为什么无法编译以下scala代码:
import collection.immutable.Seq
def foo(nodes: Seq[Int]) = null
val nodes:IndexedSeq[Int] = null
foo(nodes)
=>
error: type mismatch;
found : IndexedSeq[Int]
required: scala.collection.immutable.Seq[Int]
foo(nodes)
^
在 scala-library 中,IndexedSeq 被声明为:
trait IndexedSeq[+A] extends Seq[A]...