summary refs log tree commit diff
path: root/src/test/run-pass/specialization/defaultimpl
AgeCommit message (Collapse)AuthorLines
2017-04-26 support `default impl` for specializationGianni Ciccarelli-11/+11
`[default] [unsafe] impl` and typecheck
2017-04-25 support `default impl` for specializationGianni Ciccarelli-0/+106
pr review
2017-04-24support `default impl` for specializationGianni Ciccarelli-0/+729
this commit implements the first step of the `default impl` feature: all items in a `default impl` are (implicitly) `default` and hence specializable. In order to test this feature I've copied all the tests provided for the `default` method implementation (in run-pass/specialization and compile-fail/specialization directories) and moved the `default` keyword from the item to the impl. See referenced issue for further info