summaryrefslogtreecommitdiff
path: root/test/files/run/t3496.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-06-02 17:09:39 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-06-02 17:09:39 +0000
commit3281d0627be37df7343ca5a4f26847d85eb9618a (patch)
tree4667cbfbd2ee5ed55ed6f34f8abab0b0ec985e20 /test/files/run/t3496.scala
parentde67e153ee74427f98b4ea5c21afa8fb01fe374a (diff)
downloadscala-3281d0627be37df7343ca5a4f26847d85eb9618a.tar.gz
scala-3281d0627be37df7343ca5a4f26847d85eb9618a.tar.bz2
scala-3281d0627be37df7343ca5a4f26847d85eb9618a.zip
Fixes #3508. No review is necessary.
Diffstat (limited to 'test/files/run/t3496.scala')
-rw-r--r--test/files/run/t3496.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t3496.scala b/test/files/run/t3496.scala
new file mode 100644
index 0000000000..e1aa032ab1
--- /dev/null
+++ b/test/files/run/t3496.scala
@@ -0,0 +1,15 @@
+
+
+
+
+// ticket #3496
+object Test {
+
+ def main(args: Array[String]) {
+ val s = Stream.from(1)
+ s.take(5)
+ s.drop(5)
+ s.splitAt(5)
+ }
+
+}