summaryrefslogtreecommitdiff
path: root/test/files/run/t3580.scala
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2011-11-07 09:55:53 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2011-11-07 09:55:53 +0000
commit44b32ff306ce4dfe171db00d6b37df65467f3f46 (patch)
treeccf6907387ed6a0304c8d3fc8b83f1964a05713f /test/files/run/t3580.scala
parente196a153ccb69aed372b219ed18471a4fe29391e (diff)
downloadscala-44b32ff306ce4dfe171db00d6b37df65467f3f46.tar.gz
scala-44b32ff306ce4dfe171db00d6b37df65467f3f46.tar.bz2
scala-44b32ff306ce4dfe171db00d6b37df65467f3f46.zip
Backport of r25948
Diffstat (limited to 'test/files/run/t3580.scala')
-rw-r--r--test/files/run/t3580.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t3580.scala b/test/files/run/t3580.scala
index 50ff6c4551..ac9f81ab9e 100644
--- a/test/files/run/t3580.scala
+++ b/test/files/run/t3580.scala
@@ -4,14 +4,14 @@
object Test {
-
+
class Empty extends Traversable[Nothing] {
def foreach[U](f: Nothing => U) {}
}
-
+
def main(args: Array[String]) {
val t = new Empty
t.toStream
}
-
+
}