summaryrefslogtreecommitdiff
path: root/test/files/run/virtpatmat_opt_sharing.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/virtpatmat_opt_sharing.scala')
-rw-r--r--test/files/run/virtpatmat_opt_sharing.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/virtpatmat_opt_sharing.scala b/test/files/run/virtpatmat_opt_sharing.scala
new file mode 100644
index 0000000000..119e3050ea
--- /dev/null
+++ b/test/files/run/virtpatmat_opt_sharing.scala
@@ -0,0 +1,10 @@
+object Test extends App {
+ virtMatch()
+ def virtMatch() = {
+ List(1, 3, 4, 7) match {
+ case 1 :: 3 :: 4 :: 5 :: x => println("nope")
+ case 1 :: 3 :: 4 :: 6 :: x => println("nope")
+ case 1 :: 3 :: 4 :: 7 :: x => println(1)
+ }
+ }
+} \ No newline at end of file