| Age | Commit message (Expand) | Author | Lines |
| 2023-01-12 | Provide help on closures capturing self causing borrow checker errors | yukang | -5/+147 |
| 2023-01-11 | Change `src/test` to `tests` in source files, fix tidy and tests | Albert Larsan | -1/+1 |
| 2023-01-09 | Rollup merge of #106549 - wcampbell0x2a:use-fmt-named-parameters-borrowck, r=... | fee1-dead | -91/+62 |
| 2023-01-08 | Rollup merge of #106410 - clubby789:borrow-mut-self-mut-self-diag, r=compiler... | Yuki Okushi | -11/+16 |
| 2023-01-07 | Rollup merge of #106509 - estebank:closure-in-block, r=davidtwco | Matthias Krüger | -7/+38 |
| 2023-01-06 | Use fmt named parameters in rustc_borrowck | wcampbell | -91/+62 |
| 2023-01-05 | Suggests adding named lifetime when the return contains value borrowed from m... | yanchen4791 | -2/+11 |
| 2023-01-05 | Detect closures assigned to binding in block | Esteban Küber | -7/+38 |
| 2023-01-05 | Explain error with `&mut self` for unsized trait impls | clubby789 | -11/+16 |
| 2023-01-04 | Rollup merge of #106403 - compiler-errors:rename-hir-methods, r=cjgillot | Michael Goulet | -2/+2 |
| 2023-01-04 | Address comments | Michael Goulet | -67/+8 |
| 2023-01-04 | Simplify some iterator combinators | Michael Goulet | -42/+31 |
| 2023-01-04 | rename get_parent_node to parent_id | Michael Goulet | -2/+2 |
| 2023-01-01 | Verbose suggestions | Esteban Küber | -3/+3 |
| 2023-01-01 | Merge multiple mutable borrows of immutable binding errors | Esteban Küber | -21/+69 |
| 2022-12-31 | Auto merge of #106245 - estebank:mutability-suggestions, r=jyn514 | bors | -21/+12 |
| 2022-12-28 | Use verbose suggestions for mutability errors | Esteban Küber | -21/+12 |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -7/+4 |
| 2022-12-27 | Auto merge of #106095 - estebank:pin-mut-reborrow, r=compiler-errors | bors | -10/+59 |
| 2022-12-26 | review comments | Esteban Küber | -7/+5 |
| 2022-12-25 | Remove redundant clone suggestion | Esteban Küber | -1/+13 |
| 2022-12-25 | Create new inference context | Esteban Küber | -29/+33 |
| 2022-12-23 | Do not use `hir_ty_to_ty` | Esteban Küber | -15/+10 |
| 2022-12-24 | Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk | Matthias Krüger | -1/+1 |
| 2022-12-23 | Verify receiver is of `self: Pin<&mut Self>` | Esteban Küber | -2/+6 |
| 2022-12-23 | Suggest `.clone()` on method call move errors | Esteban Küber | -9/+34 |
| 2022-12-23 | Suggest `Pin::as_mut` when encountering borrow error | Esteban Küber | -0/+11 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -1/+1 |
| 2022-12-20 | Hackily fix an opaque type ICE | Oli Scherer | -4/+6 |
| 2022-12-20 | Make it easier to debug where a region error was created | Oli Scherer | -2/+18 |
| 2022-12-18 | use &str / String literals instead of format!() | Matthias Krüger | -3/+3 |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -2/+2 |
| 2022-12-14 | Auto merge of #104986 - compiler-errors:opaques, r=oli-obk | bors | -3/+3 |
| 2022-12-13 | Rollup merge of #105500 - oli-obk:unhide_unknown_spans, r=estebank | Matthias Krüger | -8/+16 |
| 2022-12-13 | Account for dereference expressions | Esteban Küber | -7/+22 |
| 2022-12-13 | Fix span for `&mut ` removal suggestion | Esteban Küber | -0/+1 |
| 2022-12-13 | Suggest `ref` for some patterns as a fallback | Esteban Küber | -10/+16 |
| 2022-12-13 | Change pattern borrowing suggestions to be verbose | Esteban Küber | -29/+35 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -2/+2 |
| 2022-12-13 | squash OpaqueTy and ProjectionTy into AliasTy | Michael Goulet | -2/+2 |
| 2022-12-13 | Use ty::OpaqueTy everywhere | Michael Goulet | -3/+3 |
| 2022-12-13 | Stop pointing to operators if their libcore method source is not available | Oli Scherer | -6/+1 |
| 2022-12-13 | Clarify what "this" means | Oli Scherer | -2/+15 |
| 2022-12-13 | remove unnecessary uses of `clone` | Takayuki Maeda | -1/+1 |
| 2022-12-06 | `rustc_borrowck`: remove `ref` patterns | Maybe Waffle | -58/+50 |
| 2022-11-30 | Auto merge of #104905 - compiler-errors:normalization-changes, r=spastorino | bors | -4/+4 |
| 2022-11-29 | Rollup merge of #104951 - Swatinem:async-kind, r=compiler-errors | Matthias Krüger | -6/+1 |
| 2022-11-28 | Simplify checking for `GeneratorKind::Async` | Arpad Borsos | -6/+1 |
| 2022-11-28 | Make ObligationCtxt::normalize take cause by borrow | Michael Goulet | -1/+1 |
| 2022-11-28 | partially_normalize_... -> At::normalize | Michael Goulet | -3/+3 |