summaryrefslogtreecommitdiff
path: root/test/files/run/matchonseq.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/matchonseq.scala')
-rw-r--r--test/files/run/matchonseq.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/matchonseq.scala b/test/files/run/matchonseq.scala
new file mode 100644
index 0000000000..49b406a6ec
--- /dev/null
+++ b/test/files/run/matchonseq.scala
@@ -0,0 +1,8 @@
+object Test extends App{
+ Vector(1,2,3) match {
+ case head +: tail => println("It worked! head=" + head)
+ }
+ Vector(1,2,3) match {
+ case init :+ last => println("It worked! last=" + last)
+ }
+}