| Age | Commit message (Expand) | Author | Lines |
| 2024-06-07 | Auto merge of #125918 - oli-obk:const_block_ice, r=compiler-errors | bors | -15/+13 |
| 2024-06-07 | Revert "Create const block DefIds in typeck instead of ast lowering" | Oli Scherer | -15/+13 |
| 2024-06-06 | Uplift TypeError | Michael Goulet | -0/+1 |
| 2024-06-06 | Auto merge of #124482 - spastorino:unsafe-extern-blocks, r=oli-obk | bors | -9/+13 |
| 2024-06-05 | Misc fixes (pattern type lowering, cfi, pretty printing) | Boxy | -12/+11 |
| 2024-06-05 | Basic removal of `Ty` from places (boring) | Boxy | -48/+25 |
| 2024-06-05 | Unify optional param info with object lifetime default boolean into an enum t... | Oli Scherer | -32/+48 |
| 2024-06-05 | Remove `allows_infer` now that every use of it is delegated to `HirTyLowerer` | Oli Scherer | -7/+0 |
| 2024-06-05 | Only collect infer vars to error about in case infer vars are actually forbidden | Oli Scherer | -85/+95 |
| 2024-06-05 | Remove an `Option` and instead eagerly create error lifetimes | Oli Scherer | -52/+35 |
| 2024-06-05 | Simplify some code paths and remove an unused field | Oli Scherer | -15/+3 |
| 2024-06-05 | Use a `LocalDefId` for `HirTyLowerer::item_def_id`, since we only ever (can) ... | Oli Scherer | -13/+11 |
| 2024-06-04 | Add safe/unsafe to static inside extern blocks | Santiago Pastorino | -1/+2 |
| 2024-06-04 | Handle safety keyword for extern block inner items | Santiago Pastorino | -8/+11 |
| 2024-06-04 | Rollup merge of #125667 - oli-obk:taintify, r=TaKO8Ki | Michael Goulet | -1/+3 |
| 2024-06-04 | Rollup merge of #125750 - compiler-errors:expect, r=lcnr | 许杰友 Jieyou Xu (Joe) | -3/+5 |
| 2024-06-04 | Rollup merge of #125608 - oli-obk:subsequent_lifetime_errors, r=BoxyUwU | 许杰友 Jieyou Xu (Joe) | -51/+59 |
| 2024-06-04 | Auto merge of #125380 - compiler-errors:wc-obj-safety, r=oli-obk | bors | -3/+3 |
| 2024-06-03 | Align Term methods with GenericArg methods | Michael Goulet | -3/+5 |
| 2024-06-03 | Nits and formatting | Michael Goulet | -18/+11 |
| 2024-06-03 | check_is_object_safe -> is_object_safe | Michael Goulet | -3/+3 |
| 2024-06-03 | Provide previous generic arguments to `provided_kind` | Oli Scherer | -17/+4 |
| 2024-06-03 | Always provide previous generic arguments | Oli Scherer | -30/+20 |
| 2024-06-03 | Explain some code duplication | Oli Scherer | -0/+4 |
| 2024-06-03 | Add cycle errors to ScrubbedTraitError to remove a couple more calls to new_w... | Michael Goulet | -1/+2 |
| 2024-06-03 | Use ScrubbedTraitError in more places | Michael Goulet | -4/+5 |
| 2024-06-03 | Opt-in diagnostics reporting to avoid doing extra work in the new solver | Michael Goulet | -25/+34 |
| 2024-06-03 | Make TraitEngines generic over error | Michael Goulet | -5/+6 |
| 2024-06-03 | Mark all extraneous generic args as errors | Oli Scherer | -0/+19 |
| 2024-06-03 | Mark all missing generic args as errors | Oli Scherer | -9/+30 |
| 2024-06-03 | Store indices of generic args instead of spans, as the actual entries are unu... | Oli Scherer | -16/+5 |
| 2024-06-03 | Avoid an `Option` that is always `Some` | Oli Scherer | -12/+8 |
| 2024-06-03 | Hide some follow-up errors | Oli Scherer | -0/+2 |
| 2024-06-03 | Auto merge of #125778 - estebank:issue-67100, r=compiler-errors | bors | -1/+1 |
| 2024-06-01 | Deduplicate supertrait_def_ids code | Mark Rousskov | -2/+1 |
| 2024-05-31 | Auto merge of #124662 - zetanumbers:needs_async_drop, r=oli-obk | bors | -0/+5 |
| 2024-05-31 | Rollup merge of #125786 - compiler-errors:fold-item-bounds, r=lcnr | Matthias Krüger | -2/+27 |
| 2024-05-31 | Rollup merge of #125635 - fmease:mv-type-binding-assoc-item-constraint, r=com... | Matthias Krüger | -172/+173 |
| 2024-05-30 | Rename HIR `TypeBinding` to `AssocItemConstraint` and related cleanup | León Orell Valerian Liehr | -172/+173 |
| 2024-05-30 | Fold item bound before checking that they hold | Michael Goulet | -2/+27 |
| 2024-05-30 | Auto merge of #125711 - oli-obk:const_block_ice2, r=Nadrieril | bors | -4/+3 |
| 2024-05-29 | Use parenthetical notation for `Fn` traits | Esteban Küber | -1/+1 |
| 2024-05-29 | Add lang item for Future::Output | Michael Goulet | -1/+1 |
| 2024-05-29 | Make `body_owned_by` return the body directly. | Oli Scherer | -3/+2 |
| 2024-05-29 | Don't require `visit_body` to take a lifetime that must outlive the function ... | Oli Scherer | -1/+1 |
| 2024-05-29 | Start implementing needs_async_drop and related | Daria Sukhonina | -0/+5 |
| 2024-05-28 | Add an intrinsic for `ptr::metadata` | Scott McMurray | -0/+2 |
| 2024-05-28 | Create const block DefIds in typeck instead of ast lowering | Oli Scherer | -13/+15 |
| 2024-05-28 | Allow type_of to return partially non-error types if the type was already tai... | Oli Scherer | -1/+3 |
| 2024-05-28 | Make body-visiting logic reusable | Oli Scherer | -53/+59 |