| Age | Commit message (Expand) | Author | Lines |
| 2022-10-11 | Rollup merge of #102859 - cjgillot:collect-lifetimes, r=oli-obk | Yuki Okushi | -0/+1890 |
| 2022-10-11 | Report duplicate definitions in trait impls during resolution. | Camille GILLOT | -0/+3 |
| 2022-10-10 | Check representability in adt_sized_constraint | Cameron Steffen | -3/+2 |
| 2022-10-10 | Move lifetime resolution module to rustc_hir_analysis. | Camille GILLOT | -0/+1890 |
| 2022-10-10 | Fix compiler docs | Guillaume Gomez | -5/+19 |
| 2022-10-10 | Rollup merge of #102829 - compiler-errors:rename-impl-item-kind, r=TaKO8Ki | Yuki Okushi | -6/+6 |
| 2022-10-09 | ImplItemKind::TyAlias => ImplItemKind::Type | Michael Goulet | -6/+6 |
| 2022-10-08 | Auto merge of #102809 - matthiaskrgr:rollup-qq62vuv, r=matthiaskrgr | bors | -5/+15 |
| 2022-10-08 | Rollup merge of #101520 - oli-obk:transmute_lifetimes, r=compiler-errors | Matthias Krüger | -5/+15 |
| 2022-10-08 | Auto merge of #100720 - camsteffen:representable, r=cjgillot | bors | -27/+3 |
| 2022-10-07 | Check hidden types in dead code | Oli Scherer | -20/+38 |
| 2022-10-07 | Remap hidden types from typeck before storing them in the TypeckResult | Oli Scherer | -1/+10 |
| 2022-10-07 | Unconditionally encode hidden types in typeck results | Oli Scherer | -38/+29 |
| 2022-10-07 | Auto merge of #102787 - Dylan-DPC:rollup-fvbb4t9, r=Dylan-DPC | bors | -2/+4 |
| 2022-10-07 | Allow transmutes between the same types after erasing lifetimes | Oli Scherer | -5/+15 |
| 2022-10-07 | Rewrite representability | Cameron Steffen | -27/+3 |
| 2022-10-07 | Change InferCtxtBuilder from enter to build | Cameron Steffen | -1102/+1057 |
| 2022-10-07 | fix a ICE #102768 | Takayuki Maeda | -2/+4 |
| 2022-10-07 | Remove a reference from Inherited | Cameron Steffen | -13/+13 |
| 2022-10-07 | Remove TypeckResults from InferCtxt | Cameron Steffen | -15/+19 |
| 2022-10-07 | Introduce TypeErrCtxt | Cameron Steffen | -57/+89 |
| 2022-10-07 | Rollup merge of #102720 - lyming2007:issue-102397-fix, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2022-10-07 | suggest `==` to the first expr which has `ExprKind::Assign` | Takayuki Maeda | -0/+12 |
| 2022-10-06 | Rollup merge of #98496 - BoxyUwU:instancers_bad_equality, r=lcnr | Matthias Krüger | -37/+36 |
| 2022-10-06 | reviews | Boxy | -41/+41 |
| 2022-10-06 | Rollup merge of #102708 - TaKO8Ki:improve-eqeq-suggestion, r=estebank | Matthias Krüger | -2/+10 |
| 2022-10-06 | Rollup merge of #102694 - compiler-errors:fn-to-method, r=davidtwco | Matthias Krüger | -6/+136 |
| 2022-10-05 | do not reverse the expected type and found type for ObligationCauseCode of If... | Yiming Lei | -1/+1 |
| 2022-10-05 | Update compiler/rustc_hir_analysis/src/check/callee.rs | Michael Goulet | -1/+1 |
| 2022-10-05 | suggest `==` to the rest of assign expr | Takayuki Maeda | -0/+8 |
| 2022-10-05 | use smaller span | Takayuki Maeda | -2/+2 |
| 2022-10-05 | Rollup merge of #102496 - compiler-errors:into-suggestion, r=davidtwco | Dylan DPC | -36/+119 |
| 2022-10-05 | Suggest calling method if fn does not exist | Michael Goulet | -6/+120 |
| 2022-10-05 | Delay function resolution error until typeck | Michael Goulet | -1/+17 |
| 2022-10-05 | Validate opaques in default trait bodies, don't normalize unless a body is pr... | Michael Goulet | -23/+33 |
| 2022-10-04 | Rollup merge of #102650 - Rageking8:slightly-improve-no-return-for-returning-... | Michael Howell | -1/+1 |
| 2022-10-05 | Suggest `.into()` when all other coercion suggestions fail | Michael Goulet | -36/+119 |
| 2022-10-05 | Support default-body trait functions with RPITIT | Michael Goulet | -3/+2 |
| 2022-10-04 | It's not about types or consts, but the lack of regions | Oli Scherer | -9/+7 |
| 2022-10-04 | find the correct lang item for ranges | yukang | -33/+46 |
| 2022-10-04 | slightly improve no return for returning function error | Rageking8 | -1/+1 |
| 2022-10-04 | fix #102396, suggest parentheses for possible range methods | yukang | -5/+95 |
| 2022-10-04 | Auto merge of #102644 - matthiaskrgr:rollup-rg0sw41, r=matthiaskrgr | bors | -2/+57 |
| 2022-10-04 | Rollup merge of #102441 - chenyukang:fix-102320-unwrap_or_else, r=compiler-er... | Matthias Krüger | -2/+57 |
| 2022-10-04 | Auto merge of #102395 - davidtwco:translation-rename-typeck, r=compiler-errors | bors | -44/+45 |
| 2022-10-03 | errors: rename `typeck.ftl` to `hir_analysis.ftl` | David Wood | -44/+45 |
| 2022-10-03 | `HirId` for `deferred_transmute_checks` | lcnr | -12/+15 |
| 2022-10-02 | Auto merge of #98354 - camsteffen:is-some-and-by-value, r=m-ou-se | bors | -1/+1 |
| 2022-10-02 | fix #102320, suggest unwrap_or_else when a closure is passed to unwrap_or ins... | yukang | -2/+57 |
| 2022-10-01 | Change feature name to is_some_and | Cameron Steffen | -1/+1 |