| Age | Commit message (Expand) | Author | Lines |
| 2024-01-29 | Rollup merge of #120428 - petrochenkov:somehir2, r=compiler-errors | Dylan DPC | -1/+1 |
| 2024-01-29 | Stop using `String` for error codes. | Nicholas Nethercote | -5/+5 |
| 2024-01-28 | hir: Use `InferArg` in `ArrayLen::Infer` | Vadim Petrochenkov | -1/+1 |
| 2024-01-23 | Rename `TyCtxt::struct_span_lint_hir` as `TyCtxt::node_span_lint`. | Nicholas Nethercote | -1/+1 |
| 2024-01-21 | Auto merge of #120100 - oli-obk:astconv_lifetimes, r=BoxyUwU | bors | -28/+33 |
| 2024-01-18 | Don't forget that the lifetime on hir types is `'tcx` | Oli Scherer | -28/+33 |
| 2024-01-17 | Make crate_inherent_impls fallible and stop using `track_errors` for it | Oli Scherer | -1/+1 |
| 2024-01-13 | Rollup merge of #119896 - oli-obk:variance_ice, r=compiler-errors | Matthias Krüger | -2/+6 |
| 2024-01-12 | Taint `_` placeholder types | Oli Scherer | -2/+6 |
| 2024-01-12 | Delegation implementation: step 1 | Bryanskiy | -4/+120 |
| 2024-01-11 | Taint more aggressively in astconv | Oli Scherer | -7/+16 |
| 2024-01-11 | Silence follow up errors if astconv already errored | Oli Scherer | -0/+7 |
| 2024-01-10 | Rename consuming chaining methods on `DiagnosticBuilder`. | Nicholas Nethercote | -3/+3 |
| 2024-01-10 | Rename `struct_span_err!` as `struct_span_code_err!`. | Nicholas Nethercote | -7/+8 |
| 2024-01-09 | Rollup merge of #119721 - compiler-errors:constness-implication, r=fee1-dead | Guillaume Gomez | -33/+2 |
| 2024-01-08 | Remove logic in one_bound in astconv that prefers non-const bounds | Michael Goulet | -33/+2 |
| 2024-01-08 | Remove all eight `DiagnosticBuilder::*_with_code` methods. | Nicholas Nethercote | -1/+2 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -2/+2 |
| 2023-12-27 | Introduce `const Trait` (always-const trait bounds) | León Orell Valerian Liehr | -2/+5 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -15/+15 |
| 2023-12-23 | Auto merge of #119072 - fee1-dead-contrib:effects-fixes, r=compiler-errors | bors | -8/+9 |
| 2023-12-23 | Give `DiagnosticBuilder` a default type. | Nicholas Nethercote | -1/+1 |
| 2023-12-19 | fix ICE when `~const` used on non-const trait | Deadbeef | -8/+9 |
| 2023-12-15 | Rollup merge of #118727 - compiler-errors:lint-decorate, r=WaffleLapkin | Jubilee | -2/+0 |
| 2023-12-15 | Rollup merge of #118396 - compiler-errors:ast-lang-items, r=cjgillot | Jubilee | -110/+35 |
| 2023-12-15 | Simplify instantiate_poly_trait_ref | Michael Goulet | -75/+35 |
| 2023-12-15 | banish hir::GenericBound::LangItemTrait | Michael Goulet | -36/+1 |
| 2023-12-15 | Don't pass lint back out of lint decorator | Michael Goulet | -2/+0 |
| 2023-12-15 | Annotate some bugs | Michael Goulet | -4/+18 |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -1/+1 |
| 2023-12-07 | Resolve assoc item bindings by namespace | León Orell Valerian Liehr | -116/+84 |
| 2023-12-05 | Add print_trait_sugared | Michael Goulet | -4/+1 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -5/+6 |
| 2023-11-27 | Auto merge of #118118 - spastorino:do-not-erase-late-bound-regions-on-iat, r=... | bors | -115/+92 |
| 2023-11-26 | rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle... | Vadim Petrochenkov | -2/+2 |
| 2023-11-25 | Get rid of infer vars in inherent assoc types selection by using probe | Santiago Pastorino | -47/+34 |
| 2023-11-25 | Extract select_inherent_assoc_type_candidates | Santiago Pastorino | -79/+95 |
| 2023-11-25 | Do not erase late bound regions, replace them with placeholders | Santiago Pastorino | -114/+88 |
| 2023-11-25 | Remove HirId from QPath::LangItem | Michael Goulet | -1/+1 |
| 2023-11-24 | We should call eq instead of sup as we're relating Ty directly and not Binder... | Santiago Pastorino | -4/+1 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -2/+2 |
| 2023-11-19 | Don't sort `span_suggestions`, leave that to caller | Esteban Küber | -1/+5 |
| 2023-11-14 | finish `RegionKind` rename | lcnr | -2/+2 |
| 2023-11-13 | Auto merge of #117881 - TaKO8Ki:rollup-n7jtmgj, r=TaKO8Ki | bors | -2/+1 |
| 2023-11-13 | rename `ReLateBound` to `ReBound` | lcnr | -2/+4 |
| 2023-11-12 | Small improvements in object lifetime default code | Nilstrieb | -2/+1 |
| 2023-10-18 | AliasTy::new instead of tcx method | lcnr | -2/+2 |
| 2023-10-17 | Unify suggestion wording | Esteban Küber | -2/+2 |
| 2023-10-17 | Auto merge of #116756 - fee1-dead-contrib:dupe-those-bounds, r=oli-obk | bors | -1/+33 |
| 2023-10-16 | Rollup merge of #116257 - estebank:issue-101351, r=b-naber | Matthias Krüger | -10/+9 |