summary refs log tree commit diff
path: root/src/test/run-pass/method-recursive-blanket-impl.rs
AgeCommit message (Collapse)AuthorLines
2015-01-07markers -> markerNick Cameron-1/+1
2015-01-07Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`Nick Cameron-1/+1
[breaking-change]
2015-01-05More test fixes!Alex Crichton-1/+1
2014-12-26Update tests to use `?Sized`Nick Cameron-1/+1
2014-11-17Rewrite method resolution to be cleaner, more correct, and to layNiko Matsakis-0/+46
groundwork for better performance. Key points: - Separate out determining which method to use from actually selecting a method (this should enable caching, as well as the pcwalton fast-reject strategy). - Merge the impl selection back into method resolution and don't rely on trait matching (this should perform better but also is needed to resolve some kind of conflicts, see e.g. `method-two-traits-distinguished-via-where-clause.rs`) - Purge a lot of out-of-date junk and coercions from method lookups.