summaryrefslogtreecommitdiff
path: root/test/files/neg/t6844.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-6844 restrict splicing in parameter positionDenys Shabalin2014-01-161-0/+6
Previously were a bit too permissive on how splicing in function parameter position worked. This made confusing things like possible: val x = TermName(“x”) q”def foo($x)” Now you can either splice trees in that position (ValDefs) or you have to provide type if you splice a name.