| Age | Commit message (Expand) | Author | Lines |
| 2020-02-09 | Rollup merge of #68857 - Marwes:allocations, r=matthewjasper | Dylan DPC | -61/+100 |
| 2020-02-08 | Reduce Vec allocations in normalization by passing &mut Vec | Markus Westerlind | -61/+100 |
| 2020-02-08 | Make `associated_items` query return a slice | Jonas Schievink | -8/+17 |
| 2020-02-07 | Auto merge of #65232 - nikomatsakis:lazy-norm-anon-const-push-2, r=matthewjasper | bors | -8/+59 |
| 2020-02-06 | Rollup merge of #68524 - jonas-schievink:generator-resume-arguments, r=Zoxc | Dylan DPC | -2/+4 |
| 2020-02-06 | lint impls that will become incoherent when leak-check is removed | Niko Matsakis | -8/+59 |
| 2020-02-06 | Auto merge of #68861 - Dylan-DPC:rollup-0m09hsg, r=Dylan-DPC | bors | -2/+2 |
| 2020-02-05 | Rollup merge of #68840 - Centril:rec-lim-curr-crate, r=estebank | Dylan DPC | -2/+2 |
| 2020-02-05 | Move EvaluationCache::clear. | Camille GILLOT | -7/+7 |
| 2020-02-05 | Move specialization_graph definition in traits::types. | Camille GILLOT | -196/+204 |
| 2020-02-05 | Split traits::structural_impls in two. | Camille GILLOT | -703/+714 |
| 2020-02-05 | Move traits::query datatypes to traits::types. | Camille GILLOT | -249/+353 |
| 2020-02-05 | Move traits::select datatypes to traits::types. | Camille GILLOT | -295/+290 |
| 2020-02-05 | Move traits::Reveal to traits::types. | Camille GILLOT | -43/+45 |
| 2020-02-05 | Move rustc::traits datatypes to module traits::types. | Camille GILLOT | -681/+691 |
| 2020-02-05 | `#![recursion_limit = "X"]`: note current crate name. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-04 | Rollup merge of #68815 - matthiaskrgr:redundant_imports, r=alexcrichton | Dylan DPC | -2/+0 |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -2/+0 |
| 2020-02-03 | Change wording for object unsafe because of assoc const | Esteban Küber | -5/+3 |
| 2020-02-02 | Improve needs_drop query | Matthew Jasper | -133/+0 |
| 2020-02-02 | Point at reason in object unsafe trait with `Self` in supertraits or `where`-... | Esteban Küber | -16/+38 |
| 2020-02-02 | Account for `?Sized` type parameter bounds | Esteban Küber | -1/+11 |
| 2020-02-02 | Remove duplicated code | Esteban Küber | -72/+0 |
| 2020-02-02 | Suggest `?Sized` on type parameters | Esteban Küber | -0/+38 |
| 2020-02-02 | Use more appropriate spans on object unsafe traits and provide structured sug... | Esteban Küber | -28/+85 |
| 2020-02-02 | Wording changes to object unsafe trait errors | Esteban Küber | -10/+65 |
| 2020-02-02 | review comments | Esteban Küber | -3/+3 |
| 2020-02-02 | Remove duplicated code | Esteban Küber | -8/+1 |
| 2020-02-02 | Slight rewording of diagnostic message | Esteban Küber | -1/+1 |
| 2020-02-02 | Point at the `Sized` obligation in `where` clauses | Esteban Küber | -4/+35 |
| 2020-02-02 | Tweak `Self: Sized` restriction diagnostic output | Esteban Küber | -32/+50 |
| 2020-02-02 | Point at `Sized` bound | Esteban Küber | -7/+33 |
| 2020-02-02 | Add a resume type param to the generator substs | Jonas Schievink | -1/+1 |
| 2020-02-02 | Add a resume type parameter to `Generator` | Jonas Schievink | -2/+4 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-28 | Add an early-exit to `QueryNormalizer::fold_ty` | Jonas Schievink | -0/+4 |
| 2020-01-27 | don't clone types that are copy, round two. | Matthias Krüger | -20/+13 |
| 2020-01-26 | Auto merge of #68522 - estebank:impl-trait-sugg-2, r=oli-obk | bors | -17/+52 |
| 2020-01-25 | Auto merge of #68269 - csmoe:temp, r=estebank | bors | -5/+32 |
| 2020-01-24 | review comments | Esteban Küber | -10/+8 |
| 2020-01-24 | Apply `resolve_vars_if_possible` to returned types for more accurate suggestions | Esteban Küber | -2/+6 |
| 2020-01-24 | Use more accurate return path spans | Esteban Küber | -11/+42 |
| 2020-01-23 | Account for `ty::Error` when suggesting `impl Trait` or `Box<dyn Trait>` | Esteban Küber | -6/+8 |
| 2020-01-22 | Use a `ParamEnvAnd<Predicate>` for caching in `ObligationForest` | Aaron Hill | -3/+6 |
| 2020-01-22 | Rollup merge of #68425 - phi-gamma:try-method, r=varkor | Tyler Mandry | -20/+34 |
| 2020-01-22 | Rollup merge of #68388 - varkor:toogeneric-wf, r=eddyb | Tyler Mandry | -11/+23 |
| 2020-01-21 | Cleanup: rewrite conditional as match | Philipp Gesang | -35/+31 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -60/+88 |
| 2020-01-21 | Handle methods in try diagnostic | Philipp Gesang | -0/+18 |
| 2020-01-21 | Make `TooGeneric` error in WF checking a proper error | varkor | -11/+23 |