aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/traitParamsMixin.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1444: Add implicit arguments to supertraitsMartin Odersky2016-08-201-2/+0
| | | | | | | | 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.
* Implement trait parametersMartin Odersky2015-06-191-0/+12
Add necessary logic to Mixin. Also add tests that all parameterized traits are called with parameters set.