| Age | Commit message (Expand) | Author | Lines |
| 2023-07-07 | Avoid calling report_forbidden_specialization for RPITITs | Santiago Pastorino | -2/+11 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -3/+3 |
| 2023-07-03 | use `deeply_normalize` for `assumed_wf_types` | lcnr | -7/+10 |
| 2023-06-29 | Intern OpaqueTy on ItemKind::OpaqueTy | Santiago Pastorino | -1/+1 |
| 2023-06-22 | Move `opaque_type_origin_unchecked` onto `TyCtxt` and re-use it where it was ... | Oli Scherer | -2/+2 |
| 2023-06-19 | s/Clause/ClauseKind | Michael Goulet | -1/+1 |
| 2023-06-17 | Move WF goal to clause | Michael Goulet | -1/+2 |
| 2023-06-06 | Make TraitEngine::new use the right solver, add compare mode | Michael Goulet | -1/+1 |
| 2023-06-02 | Rollup merge of #112165 - fee1-dead-contrib:rn-defualtness, r=compiler-errors | Matthias Krüger | -2/+2 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -1/+1 |
| 2023-06-01 | Rename `impl_defaultness` to `defaultness` | Deadbeef | -2/+2 |
| 2023-05-25 | Move DefiningAnchor | Michael Goulet | -1/+2 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -6/+5 |
| 2023-05-13 | Handle error body when in generator layout | clubby789 | -1/+1 |
| 2023-05-12 | Add a convenience function | Oli Scherer | -8/+1 |
| 2023-05-12 | Require `impl Trait` in associated types to appear in method signatures | Oli Scherer | -3/+10 |
| 2023-05-07 | use implied bounds when checking opaque types | Ali MJ Al-Nasrawy | -3/+14 |
| 2023-05-04 | Auto merge of #110806 - WaffleLapkin:unmkI, r=lcnr | bors | -1/+1 |
| 2023-05-03 | Restrict `From<S>` for `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -12/+9 |
| 2023-04-26 | Rollup merge of #108760 - clubby789:autolintstuff, r=wesleywiser | Matthias Krüger | -3/+1 |
| 2023-04-25 | Rollup merge of #110556 - kylematsuda:earlybinder-explicit-item-bounds, r=com... | Matthias Krüger | -1/+1 |
| 2023-04-25 | Fix static string lints | clubby789 | -3/+1 |
| 2023-04-25 | Replace `tcx.mk_trait_ref` with `ty::TraitRef::new` | Maybe Waffle | -1/+1 |
| 2023-04-21 | Allow `LocalDefId` as the argument to `def_path_str` | Oli Scherer | -1/+1 |
| 2023-04-20 | add subst_identity_iter and subst_identity_iter_copied methods on EarlyBinder... | Kyle Matsuda | -5/+4 |
| 2023-04-20 | add EarlyBinder to output of explicit_item_bounds; replace bound_explicit_ite... | Kyle Matsuda | -4/+2 |
| 2023-04-20 | change usages of explicit_item_bounds to bound_explicit_item_bounds | Kyle Matsuda | -3/+6 |
| 2023-04-19 | Substitute missing item suggestion correctly | Michael Goulet | -1/+1 |
| 2023-04-16 | Use lints via `lint_defs` instead of `lints` | Nilstrieb | -1/+1 |
| 2023-04-12 | region error cleanup | lcnr | -5/+2 |
| 2023-03-30 | Update `ty::VariantDef` to use `IndexVec<FieldIdx, FieldDef>` | Scott McMurray | -2/+3 |
| 2023-03-21 | RPITITs are DefKind::Opaque with new lowering strategy | Michael Goulet | -2/+10 |
| 2023-03-21 | IdentitySubsts::identity_for_item takes Into<DefId> | Michael Goulet | -3/+3 |
| 2023-03-21 | Use local key in providers | Michael Goulet | -1/+1 |
| 2023-03-15 | Rename impl_trait_in_trait_parent to impl_trait_in_trait_parent_fn | Santiago Pastorino | -1/+1 |
| 2023-03-09 | Remove body_def_id from Inherited | Michael Goulet | -2/+2 |
| 2023-03-08 | Tweak E0740 | Michael Goulet | -20/+8 |
| 2023-03-08 | Don't report E0740 for type error | Michael Goulet | -1/+3 |
| 2023-03-05 | Rollup merge of #108764 - cjgillot:dpm-adapt, r=compiler-errors | Matthias Krüger | -0/+8 |
| 2023-03-05 | drop_tracking_mir: diagnose recursive generator. | Camille GILLOT | -0/+8 |
| 2023-03-02 | rustc_middle: Remove trait `DefIdTree` | Vadim Petrochenkov | -2/+1 |
| 2023-02-28 | Descriptive error when users try to combine RPITIT/AFIT with specialization | Michael Goulet | -4/+36 |
| 2023-02-23 | Auto merge of #108324 - notriddle:notriddle/assoc-fn-method, r=compiler-error... | bors | -1/+1 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -2/+3 |
| 2023-02-22 | diagnostics: if AssocFn has self argument, describe as method | Michael Howell | -1/+1 |
| 2023-02-17 | Auto merge of #108075 - WaffleLapkin:de-arena-allocates-you-OwO, r=Nilstrieb | bors | -5/+5 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -9/+9 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -8/+8 |
| 2023-02-15 | Copy `ty::AssocItem` all other the place | Maybe Waffle | -5/+5 |
| 2023-02-15 | Auto merge of #108006 - cjgillot:def-impl, r=oli-obk | bors | -69/+40 |