summaryrefslogtreecommitdiff
path: root/test/junit/scala/collection/SeqViewTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/junit/scala/collection/SeqViewTest.scala')
-rw-r--r--test/junit/scala/collection/SeqViewTest.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/junit/scala/collection/SeqViewTest.scala b/test/junit/scala/collection/SeqViewTest.scala
new file mode 100644
index 0000000000..24474fc4b9
--- /dev/null
+++ b/test/junit/scala/collection/SeqViewTest.scala
@@ -0,0 +1,16 @@
+package scala.collection
+
+import org.junit.runner.RunWith
+import org.junit.runners.JUnit4
+import org.junit.Assert._
+import org.junit.Test
+
+@RunWith(classOf[JUnit4])
+class SeqViewTest {
+
+ @Test
+ def test_SI8691() {
+ // Really just testing to make sure ++: doesn't throw an exception
+ assert( Seq(1,2) ++: Seq(3,4).view == Seq(1,2,3,4) )
+ }
+}