summaryrefslogblamecommitdiff
path: root/test/files/neg/bug563.scala
blob: d559226bdb71cfed0e9c39c2398dbab96722569a (plain) (tree)
1
2
3
4
5
6
7






                                                               
object Test {
    def map[A,R](a : List[A], f : A => R) : List[R] = a.map(f);

    def split(sn : Iterable[List[Cell[int]]]) : unit =
        for (val n <- sn)
            map(n,ptr => new Cell(ptr.elem));
}