summaryrefslogtreecommitdiff
path: root/test/files/run/t8690.scala
diff options
context:
space:
mode:
authorAntoine Gourlay <antoine@gourlay.fr>2014-06-29 16:42:14 +0200
committerAntoine Gourlay <antoine@gourlay.fr>2014-06-29 16:51:51 +0200
commit4e29e9a229c5a13e8517fe034668aa97ae102eec (patch)
tree70f173930faacc2733dc38199e3f32c7a6e5c46e /test/files/run/t8690.scala
parentfbfce33cb03bc2b41dd0f46fa9f4630036b4f2ca (diff)
downloadscala-4e29e9a229c5a13e8517fe034668aa97ae102eec.tar.gz
scala-4e29e9a229c5a13e8517fe034668aa97ae102eec.tar.bz2
scala-4e29e9a229c5a13e8517fe034668aa97ae102eec.zip
SI-8690 BufferedSource.mkString mistakenly skipped the first char.
mkString is overriden in BufferedSource for performance, but the implementation always used the wrong reader. This seems to be a typo (`allReader` is declared 5 lines earlier but never used, `charReader` is used in its place).
Diffstat (limited to 'test/files/run/t8690.scala')
-rw-r--r--test/files/run/t8690.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/t8690.scala b/test/files/run/t8690.scala
new file mode 100644
index 0000000000..ab8b45b2a7
--- /dev/null
+++ b/test/files/run/t8690.scala
@@ -0,0 +1,12 @@
+import scala.io.Source
+import java.io.ByteArrayInputStream
+
+object Test extends App {
+ val txt = "abcdef"
+
+ val in = new ByteArrayInputStream(txt.getBytes());
+ val source = Source.fromInputStream(in);
+ println(source.toString) // forces the BufferedSource to look at the head of the input
+
+ println(source.mkString) // used to return "bcdef" ...
+}