aboutsummaryrefslogtreecommitdiff
path: root/tests/run/i1263.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1444: Add implicit arguments to supertraitsMartin Odersky2016-08-201-3/+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.
* Extend test case to test variations of modifiers on trait parameters.Martin Odersky2016-07-251-0/+24
|
* Fix #1263: Suppress super initializer call for val parameters of traits.Martin Odersky2016-07-221-0/+10
Val-parameters of traits don't have an initializer, as other vals do. So we cannot call the initializer in an initialization sequence of a subclass. Fixes #1263.