summaryrefslogtreecommitdiff
path: root/test/files/run/t8690.scala
diff options
context:
space:
mode:
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" ...
+}