summaryrefslogtreecommitdiff
path: root/test/files/run/t5824.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-5824 Fix crashes in reify with _*Evgeny Kotelnikov2013-02-071-0/+8
Reification crashes if "foo: _*" construct is used. This happens besause type tree is represented either with TypeTree, or with Ident (present case), and `toPreTyperTypedOrAnnotated' only matches of the former. The fix is to cover the latter too. A test is included.