| Age | Commit message (Expand) | Author | Lines |
| 2023-03-11 | fix: evaluate with wrong obligation stack | yifei | -2/+2 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -1/+1 |
| 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 | -2/+2 |
| 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 | -2/+2 |
| 2023-02-21 | Make hidden type registration opt-in, so that each site can be reviewed on it... | Oli Scherer | -8/+0 |
| 2023-02-18 | Don't ICE on bound types in sized conditions | Michael Goulet | -4/+5 |
| 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 | -1/+1 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -1/+1 |
| 2023-02-16 | Clarify `DerivedObligationCause` may hold alias id | Alan Egerton | -1/+1 |
| 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 |
| 2023-02-15 | Add specialized variants of `mk_region`. | Nicholas Nethercote | -1/+1 |
| 2023-02-14 | Auto merge of #103695 - LYF1999:yf/103563, r=lcnr | bors | -1/+46 |
| 2023-02-13 | fix: Unexpected trait bound not satisfied in HRTB | yifei | -1/+46 |
| 2023-02-13 | Alias folding/visiting traits instead of re-export | Alan Egerton | -1/+1 |
| 2023-02-10 | add `AliasEq` to `PredicateKind` | Boxy | -0/+3 |
| 2023-02-07 | Replacing bound vars is actually instantiating a binder | Michael Goulet | -4/+4 |
| 2023-02-06 | Rollup merge of #106477 - Nathan-Fenner:nathanf/refined-error-span-trait-impl... | Matthias Krüger | -1/+2 |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -1/+3 |
| 2023-01-28 | Rename `is_object_safe` to `check_is_object_safe` to hint side effects | Gary Guo | -1/+1 |
| 2023-01-27 | Compute generator saved locals on MIR. | Camille GILLOT | -4/+63 |
| 2023-01-27 | Introduce GeneratorWitnessMIR. | Camille GILLOT | -0/+9 |
| 2023-01-26 | Use new solver during selection | Michael Goulet | -14/+43 |
| 2023-01-23 | Point at specific field in struct literal when trait fulfillment fails | Nathan Fenner | -1/+2 |
| 2023-01-17 | Rollup merge of #106970 - kylematsuda:earlybinder-item-bounds, r=lcnr | Matthias Krüger | -1/+1 |
| 2023-01-17 | Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726 | Matthias Krüger | -5/+5 |
| 2023-01-17 | change item_bounds query to return EarlyBinder; remove bound_item_bounds query | Kyle Matsuda | -1/+1 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -5/+5 |
| 2023-01-15 | Remove bound_{explicit,}_item_bounds | Michael Goulet | -7/+6 |
| 2023-01-14 | change impl_trait_ref query to return EarlyBinder; remove bound_impl_trait_re... | Kyle Matsuda | -1/+1 |
| 2023-01-13 | Auto merge of #106004 - fee1-dead-contrib:const-closures, r=oli-obk | bors | -12/+15 |
| 2023-01-12 | attempt to make a minimal example work | Deadbeef | -12/+15 |
| 2023-01-11 | Filter impl and where-clause candidates that reference errors | Michael Goulet | -0/+3 |
| 2023-01-08 | Add type flags support for Ty and Const late-bound regions | Michael Goulet | -4/+3 |
| 2022-12-28 | Allow trait method paths to satisfy const Fn bounds | Deadbeef | -0/+8 |
| 2022-12-19 | implement the skeleton of the updated trait solver | lcnr | -13/+1 |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -2/+2 |
| 2022-12-13 | Combine identical alias arms | Michael Goulet | -7/+3 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -6/+9 |
| 2022-12-13 | squash OpaqueTy and ProjectionTy into AliasTy | Michael Goulet | -2/+2 |
| 2022-12-13 | ProjectionTy.item_def_id -> ProjectionTy.def_id | Michael Goulet | -2/+2 |
| 2022-12-13 | Use ty::OpaqueTy everywhere | Michael Goulet | -2/+2 |
| 2022-12-06 | Avoid noting cause code (which is usually misc, b/c codegen) for opaque type ... | Michael Goulet | -10/+3 |
| 2022-12-03 | Don't add a note for implementing a trait if its inner type is erroneous | bhbs | -15/+20 |