次の 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]...