| Age | Commit message (Expand) | Author | Lines |
| 2024-03-02 | Auto merge of #121657 - estebank:issue-119665, r=davidtwco | bors | -3/+3 |
| 2024-03-01 | Detect more cases of `=` to `:` typo | Esteban Küber | -3/+3 |
| 2024-02-29 | Make infer higher ranked equate use bidirectional subtyping in invariant context | Santiago Pastorino | -1/+17 |
| 2024-02-25 | Auto merge of #120393 - Urgau:rfc3373-non-local-defs, r=WaffleLapkin | bors | -0/+2 |
| 2024-02-22 | remove `sub_relations` from infcx, recompute in diagnostics | lcnr | -9/+8 |
| 2024-02-20 | Auto merge of #121087 - oli-obk:eager_const_failures, r=lcnr | bors | -12/+2 |
| 2024-02-19 | Always evaluate free constants and statics, even if previous errors occurred | Oli Scherer | -12/+2 |
| 2024-02-18 | Change leak check lint message to behavior is likely to change in the future | Santiago Pastorino | -8/+6 |
| 2024-02-17 | Allow newly added non_local_definitions lint in tests | Urgau | -0/+2 |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -337/+337 |
| 2024-02-14 | Continue compilation even if inherent impl checks fail | Oli Scherer | -2/+15 |
| 2024-02-14 | Use the correct char type on all platforms | Oli Scherer | -9/+8 |
| 2024-02-14 | Continue compilation after check_mod_type_wf errors | Oli Scherer | -25/+239 |
| 2024-02-08 | Continue to borrowck even if there were previous errors | Oli Scherer | -3/+60 |
| 2024-02-07 | Update tests | r0cky | -6/+38 |
| 2024-02-04 | Auto merge of #120649 - matthiaskrgr:rollup-ek80j61, r=matthiaskrgr | bors | -26/+91 |
| 2024-02-04 | Rollup merge of #120556 - fmease:improve-unused-generic-param-diags, r=oli-obk | Matthias Krüger | -26/+91 |
| 2024-02-03 | Rollup merge of #120531 - oli-obk:track_errors7, r=estebank | Matthias Krüger | -7/+44 |
| 2024-02-01 | Improve the diagnostics for unused generic parameters | León Orell Valerian Liehr | -26/+91 |
| 2024-01-31 | Remove a has_errors check that only hides errors after unrelated items have e... | Oli Scherer | -7/+44 |
| 2024-01-30 | Provide more context on derived obligation error primary label | Esteban Küber | -7/+7 |
| 2024-01-30 | Rollup merge of #120293 - estebank:issue-102629, r=nnethercote | Guillaume Gomez | -15/+15 |
| 2024-01-26 | Auto merge of #116167 - RalfJung:structural-eq, r=lcnr | bors | -50/+15 |
| 2024-01-25 | Rollup merge of #119895 - oli-obk:track_errors_3, r=matthewjasper | Matthias Krüger | -1/+10 |
| 2024-01-24 | remove StructuralEq trait | Ralf Jung | -50/+15 |
| 2024-01-24 | Deduplicate more sized errors on call exprs | Esteban Küber | -15/+15 |
| 2024-01-24 | Remove extra # from url | est31 | -2/+2 |
| 2024-01-23 | Rollup merge of #119805 - chenyukang:yukang-fix-119530, r=davidtwco | León Orell Valerian Liehr | -0/+4 |
| 2024-01-23 | Remove track_errors entirely | Oli Scherer | -1/+10 |
| 2024-01-22 | Make generic const type mismatches not hide trait impls from the trait solver | Oli Scherer | -3/+50 |
| 2024-01-21 | Suggest arry::from_fn for array initialization | yukang | -0/+4 |
| 2024-01-13 | Bless tests | George-lewis | -0/+2 |
| 2024-01-11 | Silence follow up errors if astconv already errored | Oli Scherer | -34/+7 |
| 2024-01-09 | Avoid silencing relevant follow-up errors | Oli Scherer | -13/+156 |
| 2024-01-05 | Auto merge of #118297 - shepmaster:warn-dead-tuple-fields, r=WaffleLapkin | bors | -4/+4 |
| 2024-01-02 | Adjust compiler tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -4/+4 |
| 2024-01-02 | Reorder `check_item_type` diagnostics so they occur next to the corresponding... | Oli Scherer | -2/+43 |
| 2023-12-24 | add test for #116796 | bohan | -0/+16 |
| 2023-12-14 | update use of feature flags | lcnr | -1/+1 |
| 2023-12-09 | report_not_const_evaluatable_error to avoid ICEing on ConstKind::Expr | Lenko Donchev | -0/+89 |
| 2023-12-07 | Resolve assoc item bindings by namespace | León Orell Valerian Liehr | -11/+23 |
| 2023-12-02 | Auto merge of #118077 - calebzulawski:sync-portable-simd-2023-11-19, r=workin... | bors | -4/+4 |
| 2023-12-02 | fix an ICE when a valtree failed to evaluate | Ralf Jung | -0/+15 |
| 2023-11-30 | generic_const_exprs: suggest to add the feature, not use it | Ralf Jung | -67/+67 |
| 2023-11-27 | Auto merge of #117200 - rmehri01:repeated_help, r=WaffleLapkin | bors | -1/+0 |
| 2023-11-26 | don't add redundant help for object safety violations | Ryan Mehri | -1/+0 |
| 2023-11-26 | Update std::simd usage and test outputs | Caleb Zulawski | -4/+4 |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -148/+148 |
| 2023-10-29 | On object safety error, mention new enum as alternative | Esteban Küber | -0/+1 |
| 2023-10-25 | Rollup merge of #116401 - WaffleLapkin:vtablin''', r=oli-obk | Matthias Krüger | -2/+5 |