| Age | Commit message (Expand) | Author | Lines |
| 2023-11-25 | Rollup merge of #118288 - compiler-errors:is_some_and, r=lqd,dtolnay | Michael Goulet | -1/+1 |
| 2023-11-25 | Rollup merge of #118158 - nnethercote:reduce-fluent-boilerplate, r=compiler-e... | Michael Goulet | -3/+1 |
| 2023-11-26 | Use `rustc_fluent_macro::fluent_messages!` directly. | Nicholas Nethercote | -2/+1 |
| 2023-11-26 | Avoid need for `{D,Subd}iagnosticMessage` imports. | Nicholas Nethercote | -1/+0 |
| 2023-11-25 | Get rid of infer vars in inherent assoc types selection by using probe | Santiago Pastorino | -47/+34 |
| 2023-11-25 | is_{some,ok}_and | Michael Goulet | -1/+1 |
| 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-22 | Rollup merge of #118161 - compiler-errors:coroutine-obligation-opaques, r=lcnr | Michael Goulet | -4/+18 |
| 2023-11-22 | Replace `no_ord_impl` with `orderable`. | Nicholas Nethercote | -0/+1 |
| 2023-11-22 | Replace `custom_encodable` with `encodable`. | Nicholas Nethercote | -1/+0 |
| 2023-11-22 | Allow defining opaques in check_coroutine_obligations | Michael Goulet | -4/+18 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -59/+57 |
| 2023-11-19 | Rollup merge of #118000 - compiler-errors:placeholder-ty-outlives, r=aliemjay | Michael Goulet | -0/+4 |
| 2023-11-19 | Rollup merge of #117828 - Nilstrieb:astconv-hashmaps, r=petrochenkov | Michael Goulet | -10/+6 |
| 2023-11-19 | Make regionck care about placeholders in outlives components | Michael Goulet | -0/+4 |
| 2023-11-19 | Don't sort `span_suggestions`, leave that to caller | Esteban Küber | -1/+5 |
| 2023-11-19 | Avoid iterating over hashmaps in astconv | Nilstrieb | -10/+6 |
| 2023-11-18 | Auto merge of #117525 - GKFX:remove_option_payload_ptr, r=petrochenkov | bors | -19/+0 |
| 2023-11-17 | rename bound region instantiation | lcnr | -1/+1 |
| 2023-11-17 | replace unnecessary folder impls with fold_region | lcnr | -24/+8 |
| 2023-11-16 | Remove option_payload_ptr; redundant to offset_of | George Bateman | -19/+0 |
| 2023-11-15 | Re-format code with new rustfmt | Mark Rousskov | -17/+13 |
| 2023-11-15 | Bump cfg(bootstrap)s | Mark Rousskov | -3/+3 |
| 2023-11-14 | finish `RegionKind` rename | lcnr | -35/+34 |
| 2023-11-13 | Auto merge of #117881 - TaKO8Ki:rollup-n7jtmgj, r=TaKO8Ki | bors | -3/+2 |
| 2023-11-14 | Rollup merge of #117830 - Nilstrieb:object-lifetime-default-nits, r=cjgillot | Takayuki Maeda | -3/+2 |
| 2023-11-13 | Auto merge of #117876 - lcnr:region-kind-rename, r=BoxyUwU | bors | -19/+21 |
| 2023-11-13 | rename `ReLateBound` to `ReBound` | lcnr | -19/+21 |
| 2023-11-13 | Turn assert_eq into a delay_span_bug | Mu001999 | -1/+7 |
| 2023-11-12 | Small improvements in object lifetime default code | Nilstrieb | -3/+2 |
| 2023-11-08 | Only use normalize_param_env when normalizing predicate in check_item_bounds | Michael Goulet | -2/+8 |
| 2023-11-06 | check binders with bound vars for global bounds that don't hold | Rémy Rakic | -1/+2 |
| 2023-11-04 | Auto merge of #117540 - matthiaskrgr:baby_dont_clone_me_dont_clone_me_no_more... | bors | -1/+1 |
| 2023-11-03 | Auto merge of #117507 - nnethercote:rustc_span, r=Nilstrieb | bors | -3/+2 |
| 2023-11-03 | clone less | Matthias Krüger | -1/+1 |
| 2023-11-02 | Add all RPITITs when augmenting param-env with GAT bounds in check_type_bounds | Michael Goulet | -77/+103 |
| 2023-11-02 | Use the normalizing param-env always in check_type_bounds | Michael Goulet | -123/+143 |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -3/+2 |
| 2023-10-31 | Rollup merge of #117416 - compiler-errors:tait-in-bad-body, r=oli-obk | Matthias Krüger | -3/+11 |
| 2023-10-30 | Auto merge of #116405 - estebank:issue-103155, r=davidtwco | bors | -9/+40 |
| 2023-10-30 | Sort errors | Esteban Küber | -4/+6 |
| 2023-10-30 | Detect object safety errors when assoc type is missing | Esteban Küber | -10/+39 |
| 2023-10-30 | Also consider TAIT to be uncomputable if the MIR body is tainted | Michael Goulet | -3/+11 |
| 2023-10-30 | Rollup merge of #117411 - oli-obk:query_merge_immobile_game, r=compiler-error... | Matthias Krüger | -27/+32 |
| 2023-10-30 | Improve some diagnostics around `?Trait` bounds | Oli Scherer | -27/+32 |
| 2023-10-30 | Poison check_well_formed if method receivers are invalid to prevent typeck fr... | Oli Scherer | -13/+22 |
| 2023-10-26 | Auto merge of #117171 - fee1-dead-contrib:deny-explicit-effect-params, r=oli-obk | bors | -3/+13 |