| Age | Commit message (Expand) | Author | Lines |
| 2023-01-08 | Normalize assumed_wf_types after wfchecking is complete, for better spans | Michael Goulet | -3/+4 |
| 2023-01-08 | Improve spans of non-WF implied bound types | Michael Goulet | -37/+21 |
| 2023-01-08 | Auto merge of #106235 - compiler-errors:rework-bounds-collection, r=davidtwco | bors | -94/+111 |
| 2023-01-08 | Mention signature rather than fn pointers when comparing impl/trait methods | Michael Goulet | -22/+14 |
| 2023-01-08 | Add type flags support for Ty and Const late-bound regions | Michael Goulet | -1/+1 |
| 2023-01-07 | introduce AstConv::probe_adt | Ali MJ Al-Nasrawy | -7/+20 |
| 2023-01-07 | don't normalize in astconv | Ali MJ Al-Nasrawy | -30/+12 |
| 2023-01-07 | Auto merge of #106283 - JulianKnodt:enum_err, r=cjgillot | bors | -10/+19 |
| 2023-01-06 | Rollup merge of #106533 - TaKO8Ki:use-smaller-span-for-missing-lifetime/gener... | Michael Goulet | -6/+14 |
| 2023-01-06 | use smaller spans for missing lifetime/generic args | Takayuki Maeda | -6/+14 |
| 2023-01-05 | Correct detection of elided lifetimes in impl-trait. | Camille GILLOT | -2/+4 |
| 2023-01-04 | Rollup merge of #106403 - compiler-errors:rename-hir-methods, r=cjgillot | Michael Goulet | -12/+12 |
| 2023-01-04 | Rollup merge of #106200 - compiler-errors:suggest-impl-trait, r=estebank | Matthias Krüger | -50/+97 |
| 2023-01-03 | Rollup merge of #106353 - lukas-code:reduce-red-lines-in-my-ide, r=wesleywiser | Michael Goulet | -3/+3 |
| 2023-01-04 | get_parent and find_parent | Michael Goulet | -7/+7 |
| 2023-01-04 | rename find_parent_node to opt_parent_id | Michael Goulet | -1/+1 |
| 2023-01-04 | rename get_parent_node to parent_id | Michael Goulet | -11/+11 |
| 2023-01-04 | Restore Fn trait note | Michael Goulet | -3/+3 |
| 2023-01-03 | Move check_region_obligations_and_report_errors to TypeErrCtxt | Michael Goulet | -10/+16 |
| 2023-01-03 | Suggest more impl Trait on `-> _` | Michael Goulet | -47/+94 |
| 2023-01-03 | Add note about wrapping in braces | kadmin | -10/+19 |
| 2023-01-01 | Implement fix for #67535 | Troy Neubauer | -3/+11 |
| 2023-01-01 | reduce spans for `unsafe impl` errors | Lukas Markeffsky | -3/+3 |
| 2022-12-29 | Rollup merge of #106221 - Nilstrieb:rptr-more-like-ref-actually, r=compiler-e... | Matthias Krüger | -4/+4 |
| 2022-12-28 | Rework hir Bounds collection | Michael Goulet | -94/+111 |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -4/+4 |
| 2022-12-28 | Auto merge of #106215 - matthiaskrgr:rollup-53r89ww, r=matthiaskrgr | bors | -7/+67 |
| 2022-12-28 | Rollup merge of #106172 - estebank:suggest-impl-trait, r=compiler-errors | Matthias Krüger | -7/+67 |
| 2022-12-28 | Auto merge of #106129 - compiler-errors:compare_method-tweaks, r=BoxyUwU | bors | -33/+66 |
| 2022-12-28 | better names and a comment | Michael Goulet | -3/+36 |
| 2022-12-28 | Rename module compare_method -> compare_impl_item | Michael Goulet | -14/+14 |
| 2022-12-28 | make some things less pub | Michael Goulet | -5/+5 |
| 2022-12-27 | Emit fewer errors on invalid `#[repr(transparent)]` on `enum` | Esteban Küber | -4/+2 |
| 2022-12-27 | Shorten type in note | Esteban Küber | -6/+7 |
| 2022-12-27 | review comments | Esteban Küber | -6/+3 |
| 2022-12-26 | Suggest `impl Iterator` when possible for `_` return type | Esteban Küber | -2/+64 |
| 2022-12-27 | Rollup merge of #106151 - TaKO8Ki:remove-unused-imports, r=jackh726 | fee1-dead | -1/+0 |
| 2022-12-26 | remove unused imports | Takayuki Maeda | -1/+0 |
| 2022-12-25 | fix more clippy::style findings | Matthias Krüger | -4/+1 |
| 2022-12-25 | fix some typos | KaDiWa | -1/+1 |
| 2022-12-24 | Bubble up ErrorGuaranteed from region constraints in method item compare | Michael Goulet | -10/+10 |
| 2022-12-24 | Rename some compare_method functions | Michael Goulet | -7/+7 |
| 2022-12-24 | Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk | Matthias Krüger | -27/+27 |
| 2022-12-22 | Rollup merge of #106010 - oli-obk:tait_coherence_diagnostic, r=compiler-errors | Matthias Krüger | -8/+15 |
| 2022-12-21 | Auto merge of #105613 - Nilstrieb:rename-assert_uninit_valid, r=RalfJung | bors | -4/+4 |
| 2022-12-21 | Give opaque types a better coherence error | Oli Scherer | -8/+15 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -27/+27 |
| 2022-12-20 | Auto merge of #105880 - Nilstrieb:make-newtypes-less-not-rust, r=oli-obk | bors | -3/+3 |
| 2022-12-20 | Auto merge of #105575 - compiler-errors:impl-wf-lint, r=oli-obk | bors | -12/+98 |
| 2022-12-19 | Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino | bors | -9/+5 |