| Age | Commit message (Expand) | Author | Lines |
| 2023-04-03 | Never consider int and float vars for `FnPtr` candidates | Nilstrieb | -8/+14 |
| 2023-03-30 | Update `ty::VariantDef` to use `IndexVec<FieldIdx, FieldDef>` | Scott McMurray | -0/+1 |
| 2023-03-29 | Inline and remove `SelectionContext::fast_reject_trait_refs`. | Nicholas Nethercote | -18/+4 |
| 2023-03-29 | Introduce `DeepRejectCtxt::substs_refs_may_unify`. | Nicholas Nethercote | -2/+4 |
| 2023-03-28 | Auto merge of #109692 - Nilstrieb:rollup-hq65rps, r=Nilstrieb | bors | -78/+86 |
| 2023-03-28 | Rollup merge of #102472 - lcnr:static-in-eval, r=jackh726 | nils | -78/+86 |
| 2023-03-27 | Add a builtin `FnPtr` trait | lcnr | -6/+146 |
| 2023-03-23 | Use fulfillment in InferCtxt::evaluate_obligation | Michael Goulet | -0/+1 |
| 2023-03-23 | Rename AliasEq -> AliasRelate | Michael Goulet | -2/+2 |
| 2023-03-22 | stop special-casing `'static` in evaluate | lcnr | -78/+86 |
| 2023-03-22 | Auto merge of #109119 - lcnr:trait-system-cleanup, r=compiler-errors | bors | -87/+41 |
| 2023-03-21 | Deduplicate fn trait compatibility checks | Oli Scherer | -20/+7 |
| 2023-03-21 | Only implement Fn* traits for extern "Rust" safe function pointers. | Oli Scherer | -0/+3 |
| 2023-03-21 | evaluate: improve and fix recursion depth handling | lcnr | -52/+19 |
| 2023-03-21 | remove some trait solver helpers | lcnr | -35/+22 |
| 2023-03-15 | always make `define_opaque_types` explicit | lcnr | -20/+27 |
| 2023-03-13 | Better names? | Michael Goulet | -2/+2 |
| 2023-03-13 | Treat projections with infer as placeholder during fast reject in new solver | Michael Goulet | -0/+2 |
| 2023-03-11 | Use TyCtxt::trait_solver_next in some places | Michael Goulet | -7/+6 |
| 2023-03-10 | Rollup merge of #108937 - lcnr:winnowing-enum, r=WaffleLapkin | Matthias Krüger | -40/+67 |
| 2023-03-10 | Rollup merge of #108834 - compiler-errors:fn-ptr-fn-obl, r=spastorino | Matthias Krüger | -3/+11 |
| 2023-03-10 | updating comment | lcnr | -1/+1 |
| 2023-03-09 | improve readability of winnowing | lcnr | -39/+66 |
| 2023-03-08 | fix: evaluate with wrong obligation stack | yifei | -2/+2 |
| 2023-03-06 | Do not ICE when we have fn pointer Fn obligations with bound vars in the self... | Michael Goulet | -3/+11 |
| 2023-03-05 | Rollup merge of #108744 - compiler-errors:non_lifetime_binders-bad-copy-clone... | Matthias Krüger | -5/+6 |
| 2023-03-04 | Don't ICE when encountering bound var in builtin copy/clone bounds | Michael Goulet | -5/+6 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -2/+2 |
| 2023-03-03 | Match unmatched backticks in compiler/ that are part of rustdoc | est31 | -1/+1 |
| 2023-02-25 | Treat `str` as containing `[u8]` for auto trait purposes | Michael Goulet | -1/+3 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -8/+9 |
| 2023-02-22 | Rename ty_error_with_guaranteed to ty_error, ty_error to ty_error_misc | Michael Goulet | -1/+1 |
| 2023-02-22 | Use ty_error_with_guaranteed in many more places | Michael Goulet | -2/+2 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -4/+4 |
| 2023-02-21 | Make hidden type registration opt-in, so that each site can be reviewed on it... | Oli Scherer | -8/+2 |
| 2023-02-18 | Don't ICE on bound types in sized conditions | Michael Goulet | -4/+5 |
| 2023-02-18 | Auto merge of #108112 - nnethercote:clarify-iterator-interners, r=oli-obk,com... | bors | -3/+1 |
| 2023-02-17 | Avoid double-interning some `BoundVariableKind`s. | Nicholas Nethercote | -2/+0 |
| 2023-02-17 | Replace more `mk_foo` calls with `infer_foo`. | Nicholas Nethercote | -2/+2 |
| 2023-02-17 | add predicate evaluation logic | Boxy | -2/+8 |
| 2023-02-17 | Add `Clause::ConstArgHasType` variant | Boxy | -0/+3 |
| 2023-02-17 | Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU | bors | -3/+5 |
| 2023-02-16 | changes from review | Kyle Matsuda | -1/+3 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -3/+3 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -1/+1 |
| 2023-02-17 | Rollup merge of #108136 - eggyal:unmet_trait_alias_bound_on_generic_impl, r=c... | Matthias Krüger | -2/+2 |
| 2023-02-17 | Rollup merge of #107489 - compiler-errors:non_lifetime_binders, r=cjgillot | Matthias Krüger | -1/+8 |
| 2023-02-16 | Clarify `DerivedObligationCause` may hold alias id | Alan Egerton | -2/+2 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -5/+2 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -5/+2 |