summaryrefslogtreecommitdiff
path: root/test/files/run/t3647.scala
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-19 15:03:47 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-11-19 15:03:47 +0000
commit4886b55fa41e6c98434c90fe33a5909c5c935b5b (patch)
treed2b89798b09ff6141719ab2551660867042d436a /test/files/run/t3647.scala
parent72969dec9de6b569f932577283b2029c682cf1d1 (diff)
downloadscala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.tar.gz
scala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.tar.bz2
scala-4886b55fa41e6c98434c90fe33a5909c5c935b5b.zip
Fixes #3647, closes #3647, adds a test case for...
Fixes #3647, closes #3647, adds a test case for it, and a missing test case for #3935. No review.
Diffstat (limited to 'test/files/run/t3647.scala')
-rw-r--r--test/files/run/t3647.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/files/run/t3647.scala b/test/files/run/t3647.scala
new file mode 100644
index 0000000000..a970e887f6
--- /dev/null
+++ b/test/files/run/t3647.scala
@@ -0,0 +1,23 @@
+
+
+
+import collection.immutable._
+
+
+object Test {
+ def main(args: Array[String]) {
+ val ps = PagedSeq.fromLines(List(
+ "line1",
+ "line2",
+ "line3",
+ "line4"
+ ).iterator)
+ assert(ps.filter(_ == '\n').size == 3)
+
+ val ps1 = PagedSeq.fromLines(List("Ok").iterator)
+ assert(ps1.filter(_ == '\n').size == 0)
+
+ val eps = PagedSeq.fromLines(List().iterator)
+ assert(eps.filter(_ == '\n').size == 0)
+ }
+}