summaryrefslogtreecommitdiff
path: root/test/files/run/t6089.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-9398 Treat case classes as one-element ADTs for analysisJason Zaugg2016-01-291-1/+1
| | | | | | | | Currently, exhaustivity analysis only runs for scrutinees with a sealed type. This commit treats any case class as a one-element, sealed type to enable additional analysis, such as in the new test case.
* SI-6089 better tail position analysis for matchesAdriaan Moors2012-07-181-0/+13
we mistakenly went into apply nodes to look for matchEnd-labeldefs in tail positions -- only apply nodes that jump to labels in tailpos should be traversed (this arises for nested matches)