| Age | Commit message (Expand) | Author | Lines |
| 2023-02-22 | Move the unused extern crate check back to the resolver. | Camille GILLOT | -153/+2 |
| 2023-02-22 | Auto merge of #108340 - eggyal:remove_traversal_trait_aliases, r=oli-obk | bors | -28/+29 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -28/+29 |
| 2023-02-22 | diagnostics: if AssocFn has self argument, describe as method | Michael Howell | -14/+11 |
| 2023-02-22 | Auto merge of #103042 - davidtwco:translation-distributed-ftl, r=oli-obk | bors | -15/+22 |
| 2023-02-22 | Rollup merge of #108230 - LittleFall:enhance/warning, r=estebank | Guillaume Gomez | -22/+24 |
| 2023-02-22 | errors: generate typed identifiers in each crate | David Wood | -15/+22 |
| 2023-02-22 | Convert a hard-warning about named static lifetimes into lint "unused_lifetimes" | Zhi Qi | -22/+24 |
| 2023-02-21 | hir-analysis: make one diagnostic translatable | Tshepang Mbambo | -4/+10 |
| 2023-02-21 | Auto merge of #108138 - compiler-errors:malformed-fn-trait, r=TaKO8Ki | bors | -51/+1 |
| 2023-02-20 | Rollup merge of #108265 - lcnr:cg-error-msg, r=BoxyUwU | Matthias Krüger | -6/+6 |
| 2023-02-20 | Rollup merge of #108200 - jhpratt:restricted-damerau-levenshtein-distance, r=... | Matthias Krüger | -2/+2 |
| 2023-02-20 | `const` generic -> const parameter in err msg | lcnr | -6/+6 |
| 2023-02-20 | Auto merge of #105961 - fmease:iat-type-directed-probing, r=jackh726 | bors | -55/+441 |
| 2023-02-19 | Add some FIXMEs for follow-up PRs | León Orell Valerian Liehr | -4/+9 |
| 2023-02-19 | Collect fulfillment errors across impls | León Orell Valerian Liehr | -2/+2 |
| 2023-02-19 | Deduplicate fresh_item_substs | León Orell Valerian Liehr | -31/+34 |
| 2023-02-19 | Fix substitution bug | León Orell Valerian Liehr | -17/+14 |
| 2023-02-19 | Use InferCtxt::probe to properly detect ambiguous candidates | León Orell Valerian Liehr | -21/+26 |
| 2023-02-19 | Switch from for-loop to filter_map | León Orell Valerian Liehr | -27/+26 |
| 2023-02-19 | Groundwork for detecting ambiguous candidates | León Orell Valerian Liehr | -2/+85 |
| 2023-02-19 | Make use of ObligationCtxt | León Orell Valerian Liehr | -54/+33 |
| 2023-02-19 | Use the correct ParamEnv | León Orell Valerian Liehr | -1/+1 |
| 2023-02-19 | Type-directed probing for inherent associated types | León Orell Valerian Liehr | -54/+369 |
| 2023-02-19 | Make public API, docs algorithm-agnostic | Jacob Pratt | -2/+2 |
| 2023-02-18 | Assume we can normalize trait default method RPITITs in param-env instead | Michael Goulet | -1/+1 |
| 2023-02-18 | Rollup merge of #108186 - compiler-errors:closures-with-late-bound-types-r-ba... | Matthias Krüger | -85/+114 |
| 2023-02-18 | Move late-bound arg type checks to resolve_bound_vars | Michael Goulet | -85/+114 |
| 2023-02-18 | Auto merge of #108112 - nnethercote:clarify-iterator-interners, r=oli-obk,com... | bors | -27/+14 |
| 2023-02-17 | Auto merge of #108075 - WaffleLapkin:de-arena-allocates-you-OwO, r=Nilstrieb | bors | -54/+54 |
| 2023-02-17 | Replace more `mk_foo` calls with `infer_foo`. | Nicholas Nethercote | -10/+6 |
| 2023-02-17 | Use `IntoIterator` for `mk_fn_sig`. | Nicholas Nethercote | -16/+7 |
| 2023-02-17 | Replace `mk_foo` calls with `infer_foo` where possible. | Nicholas Nethercote | -1/+1 |
| 2023-02-17 | add predicate evaluation logic | Boxy | -5/+62 |
| 2023-02-17 | Add `Clause::ConstArgHasType` variant | Boxy | -1/+3 |
| 2023-02-17 | Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU | bors | -71/+84 |
| 2023-02-16 | fix new usage of type_of | Kyle Matsuda | -1/+1 |
| 2023-02-16 | changes from review | Kyle Matsuda | -2/+10 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -79/+71 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -59/+72 |
| 2023-02-17 | Rollup merge of #107489 - compiler-errors:non_lifetime_binders, r=cjgillot | Matthias Krüger | -203/+306 |
| 2023-02-16 | Move call trait lang item malformed check to typeck | Michael Goulet | -51/+1 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -8/+3 |
| 2023-02-16 | Auto merge of #108020 - nnethercote:opt-mk_region, r=compiler-errors | bors | -58/+49 |
| 2023-02-16 | Replace some `then`s with some `then_some`s | Maybe Waffle | -1/+1 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -7/+2 |
| 2023-02-16 | Rollup merge of #108103 - matthiaskrgr:lice, r=compiler-errors | Dylan DPC | -2/+2 |
| 2023-02-16 | Deny some late-bound ty/ct in some positions, add tests | Michael Goulet | -3/+47 |
| 2023-02-16 | A bit more work on late-bound consts | Michael Goulet | -5/+1 |
| 2023-02-16 | Make things actually work | Michael Goulet | -89/+141 |