summaryrefslogtreecommitdiff
path: root/test/files/neg/t8704.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8704 Also warn if effectively multiple implicitSom Snytt2016-12-141-0/+2
| | | | | | | | | | | Current semantics are that leading implicit param turns the parameter section into an implicit section (though without making other params implicitly implicit). Warn if more than one head of a param section is implicit, since that results in multiple implicit param sections.
* SI-8704 Error on bad implicit sectionsSom Snytt2016-12-141-0/+5
Instead of aborting when a class def has extra parameter section, take all parameter sections and sanity check the use of leading implicit to indicate an implicit parameter section.