| Age | Commit message (Expand) | Author | Lines |
| 2022-12-24 | Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk | Matthias Krüger | -11/+8 |
| 2022-12-23 | Rollup merge of #105661 - lcnr:evaluate-new, r=compiler-errors | nils | -69/+1422 |
| 2022-12-21 | Don't call typeck if we have no typeck results | Michael Goulet | -11/+8 |
| 2022-12-21 | CollectAllMismatches relation should respect int/float infer vars | Michael Goulet | -7/+20 |
| 2022-12-21 | Rename things to be a bit clearer | Michael Goulet | -14/+11 |
| 2022-12-21 | Substitute things correctly | Michael Goulet | -1/+2 |
| 2022-12-21 | Remove some unnecessary try_map_bound | Michael Goulet | -8/+2 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -11/+8 |
| 2022-12-20 | dedup assembly | lcnr | -298/+267 |
| 2022-12-19 | implement the skeleton of the updated trait solver | lcnr | -69/+1453 |
| 2022-12-19 | Rollup merge of #105882 - compiler-errors:issue-105832, r=jackh726 | Dylan DPC | -5/+3 |
| 2022-12-19 | Rollup merge of #105839 - LegionMammal978:mut-upvar-not-send, r=lcnr | Dylan DPC | -17/+22 |
| 2022-12-18 | Rollup merge of #105873 - matthiaskrgr:clippy_fmt, r=Nilstrieb | Matthias Krüger | -8/+8 |
| 2022-12-18 | Rollup merge of #105869 - matthiaskrgr:clone_on_copy, r=compiler-errors | Matthias Krüger | -2/+2 |
| 2022-12-18 | Rollup merge of #105867 - matthiaskrgr:rec_param, r=compiler-errors | Matthias Krüger | -6/+1 |
| 2022-12-18 | Don't ICE in closure arg borrow suggestion | Michael Goulet | -5/+3 |
| 2022-12-18 | Rollup merge of #105875 - matthiaskrgr:needless_borrowed_reference, r=oli-obk | Matthias Krüger | -1/+1 |
| 2022-12-18 | don't restuct references just to reborrow | Matthias Krüger | -1/+1 |
| 2022-12-18 | avoid .into() conversion to identical types | Matthias Krüger | -2/+2 |
| 2022-12-18 | use &str / String literals instead of format!() | Matthias Krüger | -8/+8 |
| 2022-12-18 | remove redundant fn params that were only "used" in recursion | Matthias Krüger | -6/+1 |
| 2022-12-18 | don't clone Copy types | Matthias Krüger | -2/+2 |
| 2022-12-17 | Suggest a `T: Send` bound for `&mut T` upvars in `Send` generators | Matthew House | -17/+22 |
| 2022-12-16 | Auto merge of #105717 - compiler-errors:anonymize, r=jackh726 | bors | -4/+4 |
| 2022-12-16 | Auto merge of #104334 - compiler-errors:ufcs-sugg-wrong-def-id, r=estebank | bors | -5/+6 |
| 2022-12-15 | Rollup merge of #105727 - estebank:use-impl-trait, r=oli-obk | Matthias Krüger | -8/+20 |
| 2022-12-15 | Rollup merge of #105694 - ouz-a:issue_105689, r=estebank | Matthias Krüger | -13/+15 |
| 2022-12-15 | Consider lifetimes when comparing assoc types in method chain | Esteban Küber | -1/+1 |
| 2022-12-15 | Use `with_forced_trimmed_paths` more | Esteban Küber | -16/+21 |
| 2022-12-15 | Point at method chains on `E0271` errors | Esteban Küber | -89/+119 |
| 2022-12-15 | Auto merge of #105746 - matthiaskrgr:rollup-sz3grbv, r=matthiaskrgr | bors | -18/+26 |
| 2022-12-15 | Rollup merge of #105633 - compiler-errors:term-agnostic, r=oli-obk | Matthias Krüger | -18/+26 |
| 2022-12-15 | Auto merge of #105285 - compiler-errors:conflicting-param-env-2, r=estebank | bors | -28/+99 |
| 2022-12-14 | Tweak output for bare `dyn Trait` in arguments | Esteban Küber | -8/+20 |
| 2022-12-14 | always use anonymize_bound_vars | Michael Goulet | -4/+4 |
| 2022-12-14 | Highlight conflicting param-env candidates, again | Michael Goulet | -28/+99 |
| 2022-12-14 | Make report_projection_error more term agnostic | Michael Goulet | -18/+26 |
| 2022-12-14 | drive-by: Fix path spans | Michael Goulet | -1/+1 |
| 2022-12-14 | Use impl's def id when calculating type to specify UFCS | Michael Goulet | -4/+5 |
| 2022-12-14 | Fix a freshly detected wrong TraitRef | Oli Scherer | -9/+5 |
| 2022-12-14 | Prevent the creation of `TraitRef` without dedicated methods | Oli Scherer | -5/+2 |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -8/+8 |
| 2022-12-14 | Remove many more cases of `mk_substs_trait` that can now use the iterator sch... | Oli Scherer | -8/+3 |
| 2022-12-14 | Rename to match similar methods | Oli Scherer | -4/+4 |
| 2022-12-14 | Guard `AliasTy` creation against passing the wrong number of substs | Oli Scherer | -17/+9 |
| 2022-12-14 | skip if val has ecaping bound vars | ouz-a | -13/+15 |
| 2022-12-14 | Rollup merge of #105595 - TaKO8Ki:suggest-dereferencing-receiver-argument, r=... | Matthias Krüger | -6/+28 |
| 2022-12-14 | Rollup merge of #105523 - estebank:suggest-collect-vec, r=compiler-errors | Matthias Krüger | -56/+23 |
| 2022-12-14 | Auto merge of #104986 - compiler-errors:opaques, r=oli-obk | bors | -117/+101 |
| 2022-12-13 | Auto merge of #105667 - matthiaskrgr:rollup-fexlc0b, r=matthiaskrgr | bors | -21/+11 |