summaryrefslogtreecommitdiff
path: root/test/files/pos/bug927.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug927.scala')
-rw-r--r--test/files/pos/bug927.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug927.scala b/test/files/pos/bug927.scala
index 1a906cd9bc..5887aba255 100644
--- a/test/files/pos/bug927.scala
+++ b/test/files/pos/bug927.scala
@@ -2,7 +2,7 @@ object Test {
def sum(stream: Stream[Int]): Int =
stream match {
- case Stream.empty => 0
+ case Stream.Empty => 0
case Stream.cons(hd, tl) => hd + sum(tl)
}
val str: Stream[Int] = Stream.fromIterator(List(1,2,3).elements)