summaryrefslogtreecommitdiff
path: root/test/files/run/macro-quasiquotes/Test_2.scala
Commit message (Collapse)AuthorAgeFilesLines
* macro impls can now return subtypes of c.TreeEugene Burmako2013-07-101-0/+5
10229316db allowed macro impls to take and return values of type c.Tree in addition to the usual c.Expr. However it didn't take into account that it is often useful to return subtypes of trees (e.g. with quasiquotes that expand into expressions typed as precisely as possible). This patch fixes that oversight.