aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6628.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6628.scala')
-rw-r--r--tests/pending/run/t6628.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/t6628.scala b/tests/pending/run/t6628.scala
index 84524a7a3..bc87c1250 100644
--- a/tests/pending/run/t6628.scala
+++ b/tests/pending/run/t6628.scala
@@ -1,6 +1,6 @@
object Test {
def coll = new Traversable[String] {
- override def foreach[U](f:String=>U) { f("1") }
+ override def foreach[U](f:String=>U): Unit = { f("1") }
}
val dropped = coll.view drop 1