summaryrefslogtreecommitdiff
path: root/test/files/neg/t5390.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5390 Detect forward reference of case class applyJason Zaugg2012-12-041-0/+4
Refchecks performs (among others) two tasks at once: - detecting forward references - translating `qual.Case(...)` to `new qual.Case(...)` As is often the case with such multi-tasking tree traversals, completion of one task precluded the other.