| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2022-04-04 | Remove hack, fix fmt and tests | Esteban Kuber | -6/+3 |
| 2022-04-04 | Highlight `is` in the message for emphasis | Esteban Kuber | -4/+3 |
| 2022-04-04 | Refer to the TraitRef::identity in the message to be clearer | Esteban Kuber | -2/+2 |
| 2022-04-04 | Dedup logic and improve output for other types that impl trait | Esteban Kuber | -63/+65 |
| 2022-04-04 | Fix list length | Esteban Kuber | -1/+1 |
| 2022-04-04 | Suggest dereferncing when possible in E0277, fix #87437 | Esteban Kuber | -38/+66 |
| 2022-04-04 | Fix #90970, doesn't address #87437 | Esteban Kuber | -6/+73 |
| 2022-04-04 | Mention implementers of unsatisfied trait | Esteban Kuber | -37/+133 |
| 2022-04-04 | Rollup merge of #95609 - compiler-errors:borrow-unsized-to-dyn, r=nagisa | Dylan DPC | -0/+43 |
| 2022-04-04 | Auto merge of #95031 - compiler-errors:param-env-cache, r=Aaron1011 | bors | -8/+8 |
| 2022-04-02 | Suggest borrowing when trying to coerce unsized type into dyn Trait | Michael Goulet | -0/+43 |
| 2022-04-02 | Fix late-bound ICE in unsized return suggestion | Michael Goulet | -55/+79 |
| 2022-04-02 | Auto merge of #94911 - jackh726:gats_extended_2, r=compiler-errors | bors | -14/+78 |
| 2022-04-02 | Make GATs object safe under generic_associated_types_extended feature | Jack Huey | -14/+78 |
| 2022-04-02 | rebase and use ty::Const in patterns again | b-naber | -53/+1 |
| 2022-04-02 | do use ty::Const in patterns and abstract consts | b-naber | -14/+9 |
| 2022-04-02 | change thir to use mir::ConstantKind instead of ty::Const | b-naber | -5/+67 |
| 2022-04-02 | Rollup merge of #95560 - lcnr:obligation-cause, r=oli-obk | Dylan DPC | -7/+8 |
| 2022-04-01 | convert more `DefId`s to `LocalDefId` | lcnr | -7/+8 |
| 2022-04-01 | Rollup merge of #95260 - compiler-errors:fn, r=davidtwco | Matthias Krüger | -5/+121 |
| 2022-03-31 | Rollup merge of #95517 - lcnr:rustc_borrowck-misc, r=jackh726 | Dylan DPC | -1/+1 |
| 2022-03-31 | address comments, add test for shadowed Box type | Michael Goulet | -7/+3 |
| 2022-03-31 | Specialize suggestion for Option<T> | Michael Goulet | -11/+52 |
| 2022-03-31 | obligation cause: `RepeatVec` -> `RepeatValueCopy` | lcnr | -1/+1 |
| 2022-03-31 | Rollup merge of #95497 - nyurik:compiler-spell-comments, r=compiler-errors | Dylan DPC | -20/+20 |
| 2022-03-31 | Rollup merge of #95471 - oli-obk:tait_ice, r=estebank | Dylan DPC | -13/+6 |
| 2022-03-31 | Rollup merge of #94869 - jackh726:gats_extended, r=compiler-errors | Dylan DPC | -33/+73 |
| 2022-03-30 | Add the generic_associated_types_extended feature | Jack Huey | -33/+73 |
| 2022-03-30 | Spellchecking compiler comments | Yuri Astrakhan | -20/+20 |
| 2022-03-30 | Don't ICE when opaque types get their hidden type constrained again. | Oli Scherer | -13/+6 |
| 2022-03-30 | Auto merge of #95466 - Dylan-DPC:rollup-g7ddr8y, r=Dylan-DPC | bors | -5/+5 |
| 2022-03-30 | Rollup merge of #95461 - nyurik:spelling, r=lcnr | Dylan DPC | -4/+4 |
| 2022-03-30 | Spellchecking compiler code | Yuri Astrakhan | -1/+1 |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -4/+4 |
| 2022-03-28 | Also use the RPIT back compat hack in trait projection | Oli Scherer | -4/+15 |
| 2022-03-28 | Remove opaque type obligation and just register opaque types as they are enco... | Oli Scherer | -42/+0 |
| 2022-03-28 | Have the spans of TAIT type conflict errors point to the actual site instead ... | Oli Scherer | -8/+6 |
| 2022-03-28 | Don't bind hidden types when searching for matching impls | Oli Scherer | -0/+1 |
| 2022-03-28 | Fail more aggressively | Oli Scherer | -4/+5 |
| 2022-03-28 | Revert "Auto merge of #93893 - oli-obk:sad_revert, r=oli-obk" | Oli Scherer | -37/+109 |