| Age | Commit message (Expand) | Author | Lines |
| 2022-05-03 | Auto merge of #96558 - bjorn3:librarify_parse_format, r=davidtwco | bors | -60/+61 |
| 2022-05-03 | Make rustc_parse_format compile on stable | bjorn3 | -60/+61 |
| 2022-05-02 | rustc: Panic by default in `DefIdTree::parent` | Vadim Petrochenkov | -1/+1 |
| 2022-04-30 | Store all generic bounds as where predicates. | Camille GILLOT | -36/+16 |
| 2022-04-30 | Inline WhereClause into Generics. | Camille GILLOT | -12/+7 |
| 2022-04-29 | Auto merge of #95819 - oli-obk:mir_can't_hold_all_these_lifetimes, r=estebank | bors | -1/+1 |
| 2022-04-28 | Auto merge of #95976 - b-naber:valtree-constval-conversion, r=oli-obk | bors | -12/+16 |
| 2022-04-28 | Update the diagnostic message to match the new span | Oli Scherer | -1/+1 |
| 2022-04-26 | Better error messages when collecting into `[T; n]` | Michael Goulet | -11/+31 |
| 2022-04-26 | add hacky closure to struct_tail_with_normalize in order to allow us to walk ... | b-naber | -12/+16 |
| 2022-04-25 | do not consider two extern types to be similar | lcnr | -0/+1 |
| 2022-04-19 | Rollup merge of #94493 - oribenshir:feature/ISSUE-78543_async_fn_in_foreign_c... | Dylan DPC | -40/+160 |
| 2022-04-16 | Rollup merge of #96023 - matthiaskrgr:clippyper1304, r=lcnr | Dylan DPC | -2/+2 |
| 2022-04-16 | Provide a better diagnostic on failure to meet send bound on futures in a for... | oribenshir | -40/+160 |
| 2022-04-16 | Auto merge of #92364 - jackh726:Quantumplation/65853/param-heuristics, r=este... | bors | -1/+9 |
| 2022-04-16 | Implementation for 65853 | Jack Huey | -1/+9 |
| 2022-04-15 | Rollup merge of #96026 - matthiaskrgr:clippy_compl_1304, r=Dylan-DPC | Dylan DPC | -1/+1 |
| 2022-04-15 | Rollup merge of #95749 - compiler-errors:ambig, r=oli-obk | Dylan DPC | -2/+2 |
| 2022-04-15 | Rollup merge of #94457 - jhpratt:stabilize-derive_default_enum, r=davidtwco | Dylan DPC | -1/+1 |
| 2022-04-14 | Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix | bors | -1/+11 |
| 2022-04-13 | couple of clippy::complexity fixes | Matthias Krüger | -1/+1 |
| 2022-04-13 | couple of clippy::perf fixes | Matthias Krüger | -2/+2 |
| 2022-04-13 | Auto merge of #94255 - b-naber:use-mir-constant-in-thir, r=oli-obk | bors | -0/+1 |
| 2022-04-11 | Auto merge of #95931 - matthiaskrgr:rollup-1c5zhit, r=matthiaskrgr | bors | -0/+7 |
| 2022-04-11 | Rollup merge of #95876 - fee1-dead:note-const-drop, r=oli-obk | Matthias Krüger | -0/+7 |
| 2022-04-11 | Add a note for unsatisfied `~const Drop` bounds | Deadbeef | -0/+7 |
| 2022-04-10 | only suggest removing semicolon when expr implements trait | Michael Goulet | -10/+21 |
| 2022-04-09 | Auto merge of #95435 - cjgillot:one-name, r=oli-obk | bors | -5/+5 |
| 2022-04-09 | Use def_key in `tcx.item_name` when possible. | Camille GILLOT | -5/+5 |
| 2022-04-09 | Auto merge of #95835 - Dylan-DPC:rollup-l5mf2ad, r=Dylan-DPC | bors | -3/+19 |
| 2022-04-09 | Rollup merge of #95751 - compiler-errors:ambig-int, r=jackh726 | Dylan DPC | -3/+19 |
| 2022-04-09 | Auto merge of #95524 - oli-obk:cached_stable_hash_cleanups, r=nnethercote | bors | -9/+6 |
| 2022-04-08 | Avoid looking at the internals of Interned directly | Oli Scherer | -9/+6 |
| 2022-04-07 | Stabilize `derive_default_enum` | Jacob Pratt | -1/+1 |
| 2022-04-07 | Auto merge of #95678 - pietroalbini:pa-1.62.0-bootstrap, r=Mark-Simulacrum | bors | -18/+0 |
| 2022-04-06 | don't report int/float ambiguity when we have previous errors | Michael Goulet | -3/+19 |
| 2022-04-06 | only downgrade Error -> Ambiguous if type error is in predicate | Michael Goulet | -2/+2 |
| 2022-04-06 | get rid of visit_constant in thir visitor | b-naber | -4/+0 |
| 2022-04-05 | rustc_trait_selection changes | Pietro Albini | -18/+0 |
| 2022-04-05 | Rollup merge of #95663 - notriddle:notriddle/unsafe-fn-closure, r=compiler-er... | Dylan DPC | -0/+9 |
| 2022-04-05 | Rollup merge of #95525 - ohno418:suggest-derivable-trait-E0277, r=compiler-er... | Dylan DPC | -0/+70 |
| 2022-04-05 | errors: implement fallback diagnostic translation | David Wood | -7/+4 |
| 2022-04-05 | span: move `MultiSpan` | David Wood | -6/+6 |
| 2022-04-05 | errors: introduce `DiagnosticMessage` | David Wood | -1/+2 |
| 2022-04-05 | Suggest only when all fields impl the trait | ohno418 | -18/+50 |
| 2022-04-05 | Suggest only when Rhs for PartialEq and PartialOrd is the same type as self | ohno418 | -29/+31 |
| 2022-04-05 | Suggest derivable trait on E0277 | ohno418 | -0/+36 |
| 2022-04-04 | diagnostics: give a special note for unsafe fn / Fn/FnOnce/FnMut | Michael Howell | -0/+9 |
| 2022-04-05 | Rollup merge of #95603 - compiler-errors:dyn-return, r=oli-obk | Dylan DPC | -55/+79 |
| 2022-04-05 | Rollup merge of #91873 - estebank:mention-impls-for-unsatisfied-trait, r=davi... | Dylan DPC | -83/+272 |