summaryrefslogtreecommitdiff
path: root/test/files/neg/bug563.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug563.scala')
-rw-r--r--test/files/neg/bug563.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/bug563.scala b/test/files/neg/bug563.scala
index d559226bdb..d8e026e656 100644
--- a/test/files/neg/bug563.scala
+++ b/test/files/neg/bug563.scala
@@ -2,6 +2,6 @@ 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)
+ for (n <- sn)
map(n,ptr => new Cell(ptr.elem));
}