| Age | Commit message (Expand) | Author | Lines |
| 2022-12-23 | Suggest `.clone()` on method call move errors | Esteban Küber | -9/+35 |
| 2022-12-23 | Suggest `Pin::as_mut` when encountering borrow error | Esteban Küber | -0/+11 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -11/+8 |
| 2022-12-20 | Hackily fix an opaque type ICE | Oli Scherer | -5/+13 |
| 2022-12-20 | Some style nits | Oli Scherer | -1/+1 |
| 2022-12-20 | Replace a `find` with a loop to simplify the logic. | Oli Scherer | -19/+22 |
| 2022-12-20 | Make it easier to debug where a region error was created | Oli Scherer | -3/+19 |
| 2022-12-20 | Some tracing cleanups | Oli Scherer | -4/+2 |
| 2022-12-20 | Auto merge of #105880 - Nilstrieb:make-newtypes-less-not-rust, r=oli-obk | bors | -18/+15 |
| 2022-12-19 | Rollup merge of #105864 - matthiaskrgr:compl, r=Nilstrieb | Dylan DPC | -6/+1 |
| 2022-12-19 | clippy::complexity fixes | Matthias Krüger | -6/+1 |
| 2022-12-18 | Rollup merge of #105873 - matthiaskrgr:clippy_fmt, r=Nilstrieb | Matthias Krüger | -3/+3 |
| 2022-12-18 | Rollup merge of #105869 - matthiaskrgr:clone_on_copy, r=compiler-errors | Matthias Krüger | -2/+2 |
| 2022-12-18 | A few small cleanups for `newtype_index` | Nilstrieb | -11/+6 |
| 2022-12-18 | Make `#[debug_format]` an attribute in `newtype_index` | Nilstrieb | -7/+9 |
| 2022-12-18 | use &str / String literals instead of format!() | Matthias Krüger | -3/+3 |
| 2022-12-18 | remove redundant fn params that were only "used" in recursion | Matthias Krüger | -26/+3 |
| 2022-12-18 | don't clone Copy types | Matthias Krüger | -2/+2 |
| 2022-12-15 | Auto merge of #105657 - oli-obk:mk_projection_ty, r=lcnr | bors | -2/+2 |
| 2022-12-15 | Auto merge of #104765 - chenyukang:yukang-fix-104639-lifetime-check, r=oli-obk | bors | -20/+7 |
| 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 |