aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/traitParamsTyper.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix testMartin Odersky2016-08-201-1/+1
|
* Fix #1444: Add implicit arguments to supertraitsMartin Odersky2016-08-201-0/+2
| | | | | | | | If a super trait is given as a type (i.e. no argument list), implicit args were not passed. This is fixed now. Also, we now check for parameterized traits lacking type arguments in Typer instead of in Mixin. Fixes #1444.
* Negtests with // error commentsvsalvis2016-02-181-1/+1
|
* Implement checking for illegal parent trait constructor calls.Martin Odersky2015-06-191-0/+16
A parent trait may not be parameterized (as in T()) if the calling class does not directly implement that trait.