aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t873.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t873.scala')
-rw-r--r--tests/pos/t873.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/pos/t873.scala b/tests/pos/t873.scala
new file mode 100644
index 000000000..b8c50afd3
--- /dev/null
+++ b/tests/pos/t873.scala
@@ -0,0 +1,10 @@
+abstract class Foo {
+
+ val x:Option[List[String]]
+ val y:List[Int]
+
+ val z = (0:Any) match {
+ case 1 => x
+ case 2 => y
+ }
+}