summaryrefslogtreecommitdiff
path: root/test/files/run/virtpatmat_alts.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/virtpatmat_alts.scala')
-rw-r--r--test/files/run/virtpatmat_alts.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/virtpatmat_alts.scala b/test/files/run/virtpatmat_alts.scala
new file mode 100644
index 0000000000..b7717524e2
--- /dev/null
+++ b/test/files/run/virtpatmat_alts.scala
@@ -0,0 +1,12 @@
+object Test extends App {
+ (true, true) match {
+ case (true, true) | (false, false) => 1
+ }
+
+ List(5) match {
+ case 1 :: Nil | 2 :: Nil => println("FAILED")
+ case (x@(4 | 5 | 6)) :: Nil => println("OK "+ x)
+ case 7 :: Nil => println("FAILED")
+ case Nil => println("FAILED")
+ }
+} \ No newline at end of file