aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t8412.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patmat/t8412.scala')
-rw-r--r--tests/patmat/t8412.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/patmat/t8412.scala b/tests/patmat/t8412.scala
new file mode 100644
index 000000000..f4b2b6090
--- /dev/null
+++ b/tests/patmat/t8412.scala
@@ -0,0 +1,14 @@
+sealed trait Tree
+case class Let(sth: List[Any]) extends Tree
+case class Lit(sth: Any) extends Tree
+
+object Test {
+ def wroong(tree: Tree) =
+ tree match {
+ case Let(_ :: rest) =>
+ ???
+ case Let(Nil) =>
+ ???
+ // no warning for missing Lit(_) in 2.10
+ }
+}