summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-05-28 05:29:09 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-05-28 05:29:09 -0700
commit6da73dd38d6dd7d8b463520bf54fc79975afc2a0 (patch)
tree60b381e92051e22abaf3c98f5e88de3ca6910d7b /test/files/pos
parentac3fdfddb64a93a17f414e34692b2fd86e7f4746 (diff)
parent7d0fdb37f4ae4555a51e13b17cca3e8ec94dd9d1 (diff)
downloadscala-6da73dd38d6dd7d8b463520bf54fc79975afc2a0.tar.gz
scala-6da73dd38d6dd7d8b463520bf54fc79975afc2a0.tar.bz2
scala-6da73dd38d6dd7d8b463520bf54fc79975afc2a0.zip
Merge pull request #635 from adriaanm/topic/virtpatmat
fixes for exhaustivity
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/exhaustive_heuristics.scala12
1 files changed, 11 insertions, 1 deletions
diff --git a/test/files/pos/exhaustive_heuristics.scala b/test/files/pos/exhaustive_heuristics.scala
index f6bea455a5..297900510b 100644
--- a/test/files/pos/exhaustive_heuristics.scala
+++ b/test/files/pos/exhaustive_heuristics.scala
@@ -12,5 +12,15 @@ object Test {
case _ if turnOffChecks =>
}
- // TODO: we back off when there are any user-defined extractors
+ // we back off when there are any user-defined extractors
+ // in fact this is exhaustive, but we pretend we don't know since List's unapplySeq is not special to the compiler
+ // to compensate our ignorance, we back off
+ // well, in truth, we do rewrite List() to Nil, but otherwise we do nothing
+ // the full rewrite List(a, b) to a :: b :: Nil, for example is planned (but not sure it's a good idea)
+ List(true, false) match {
+ case List(_, _, _*) =>
+ case List(node, _*) =>
+ case Nil =>
+ }
+
} \ No newline at end of file