DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / pmbug.scala
12345678
object Test { def flatten[a](l: List[List[a]]): List[a] = l match { case Nil => Nil case head :: tail => head ::: flatten(tail) } }