| Age | Commit message (Expand) | Author | Lines |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -2/+2 |
| 2022-12-14 | Auto merge of #104986 - compiler-errors:opaques, r=oli-obk | bors | -3/+3 |
| 2022-12-13 | Rollup merge of #105500 - oli-obk:unhide_unknown_spans, r=estebank | Matthias Krüger | -8/+16 |
| 2022-12-13 | Account for dereference expressions | Esteban Küber | -7/+22 |
| 2022-12-13 | Fix span for `&mut ` removal suggestion | Esteban Küber | -0/+1 |
| 2022-12-13 | Suggest `ref` for some patterns as a fallback | Esteban Küber | -10/+16 |
| 2022-12-13 | Change pattern borrowing suggestions to be verbose | Esteban Küber | -29/+35 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -2/+2 |
| 2022-12-13 | squash OpaqueTy and ProjectionTy into AliasTy | Michael Goulet | -2/+2 |
| 2022-12-13 | Use ty::OpaqueTy everywhere | Michael Goulet | -3/+3 |
| 2022-12-13 | Stop pointing to operators if their libcore method source is not available | Oli Scherer | -6/+1 |
| 2022-12-13 | Clarify what "this" means | Oli Scherer | -2/+15 |
| 2022-12-13 | remove unnecessary uses of `clone` | Takayuki Maeda | -1/+1 |
| 2022-12-09 | Remove unneeded field from `SwitchTargets` | Jakob Degen | -19/+4 |
| 2022-12-07 | Rollup merge of #105368 - WaffleLapkin:deref-even-harder, r=TaKO8Ki | Matthias Krüger | -160/+145 |
| 2022-12-06 | `rustc_borrowck`: remove `ref` patterns | Maybe Waffle | -160/+145 |
| 2022-12-06 | drive-by: Default param for ToPredicate | Michael Goulet | -4/+2 |
| 2022-12-01 | Create `format_args` as late as possible | Oli Scherer | -6/+4 |
| 2022-11-30 | Auto merge of #104905 - compiler-errors:normalization-changes, r=spastorino | bors | -4/+4 |
| 2022-11-29 | Rollup merge of #103876 - oli-obk:tait_implications, r=lcnr | Matthias Krüger | -6/+6 |
| 2022-11-29 | Rollup merge of #104951 - Swatinem:async-kind, r=compiler-errors | Matthias Krüger | -6/+1 |
| 2022-11-28 | Simplify checking for `GeneratorKind::Async` | Arpad Borsos | -6/+1 |
| 2022-11-28 | Make ObligationCtxt::normalize take cause by borrow | Michael Goulet | -1/+1 |
| 2022-11-28 | partially_normalize_... -> At::normalize | Michael Goulet | -3/+3 |
| 2022-11-28 | Rollup merge of #104956 - mucinoab:issue-104870, r=compiler-errors | Matthias Krüger | -7/+9 |
| 2022-11-27 | Avoid ICE if the Clone trait is not found while building error suggestions | Bruno A. Muciño | -7/+9 |
| 2022-11-27 | Rollup merge of #104976 - WaffleLapkin:move_comments, r=cjgillot | Matthias Krüger | -5/+5 |
| 2022-11-27 | Auto merge of #104048 - cjgillot:split-lifetime, r=compiler-errors | bors | -27/+7 |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -5/+5 |
| 2022-11-26 | Rollup merge of #104786 - WaffleLapkin:amp-mut-help, r=compiler-errors | Guillaume Gomez | -16/+9 |
| 2022-11-25 | Introduce PredicateKind::Clause | Santiago Pastorino | -18/+22 |
| 2022-11-24 | Rollup merge of #104773 - oli-obk:overlap, r=lcnr | Matthias Krüger | -10/+4 |
| 2022-11-24 | Auto merge of #104321 - Swatinem:async-gen, r=oli-obk | bors | -5/+11 |
| 2022-11-24 | Avoid `GenFuture` shim when compiling async constructs | Arpad Borsos | -5/+11 |
| 2022-11-23 | Fix rebase | Esteban Küber | -2/+1 |
| 2022-11-23 | Add `Mutability::mutably_str` | Maybe Waffle | -4/+1 |
| 2022-11-23 | Add `Mutability::{is_mut,is_not}` | Maybe Waffle | -1/+1 |
| 2022-11-23 | Account for closures | Esteban Küber | -5/+9 |
| 2022-11-23 | Account for `x @ y` and suggest `ref x @ ref y` | Esteban Küber | -8/+22 |
| 2022-11-23 | review comments: inline bindings and fix typo | Esteban Küber | -5/+9 |
| 2022-11-23 | Tweak output to account for alternative bindings in the same pattern | Esteban Küber | -22/+17 |
| 2022-11-23 | Fix wording | Esteban Küber | -1/+1 |
| 2022-11-23 | Tweak output in for loops | Esteban Küber | -3/+11 |
| 2022-11-23 | Remove logic duplication | Esteban Küber | -33/+18 |
| 2022-11-23 | Extract suggestion logic to its own method | Esteban Küber | -140/+156 |
| 2022-11-23 | Use `type_implements_trait` | Esteban Küber | -20/+5 |
| 2022-11-23 | Do not suggest `ref` multiple times for the same binding | Esteban Küber | -1/+3 |
| 2022-11-23 | Suggest `.clone()` or `ref binding` on E0382 | Esteban Küber | -19/+173 |
| 2022-11-23 | Add `Mutability::ref_prefix_str`, order `Mutability`, simplify code | Maybe Waffle | -12/+8 |
| 2022-11-23 | Separate lifetime ident from resolution in HIR. | Camille GILLOT | -27/+7 |