| Age | Commit message (Expand) | Author | Lines |
| 2024-04-25 | Suggest ref mut for pattern matching assignment | yukang | -1/+16 |
| 2024-04-23 | Rollup merge of #122598 - Nadrieril:full-derefpats, r=matthewjasper | León Orell Valerian Liehr | -34/+54 |
| 2024-04-22 | Rollup merge of #124183 - compiler-errors:unnecessary-by-ref, r=oli-obk | Guillaume Gomez | -2/+2 |
| 2024-04-21 | Add `AggregateKind::RawPtr` and enough support to compile | Scott McMurray | -3/+9 |
| 2024-04-20 | Add a non-shallow fake borrow | Nadrieril | -34/+54 |
| 2024-04-19 | Stop taking ParamTy/ParamConst/EarlyParamRegion/AliasTy by ref | Michael Goulet | -2/+2 |
| 2024-04-19 | remove optionality from MoveData::base_local | beepster4096 | -3/+1 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -8/+8 |
| 2024-04-16 | Auto merge of #123537 - compiler-errors:shallow, r=lcnr | bors | -1/+1 |
| 2024-04-16 | Rollup merge of #123990 - compiler-errors:suggest-closure-ret-deref, r=oli-obk | Guillaume Gomez | -73/+64 |
| 2024-04-16 | Rollup merge of #123797 - amandasystems:better-graphviz, r=oli-obk | Guillaume Gomez | -6/+38 |
| 2024-04-15 | Make suggest_deref_closure_return more idiomatic/easier to understand | Michael Goulet | -73/+64 |
| 2024-04-16 | Rollup merge of #123989 - compiler-errors:type-dependent-def-id, r=oli-obk | León Orell Valerian Liehr | -26/+20 |
| 2024-04-16 | Rollup merge of #123016 - compiler-errors:no-type-var-origin, r=lcnr | León Orell Valerian Liehr | -17/+10 |
| 2024-04-15 | Simplify shallow resolver to just fold ty/consts | Michael Goulet | -1/+1 |
| 2024-04-15 | Rebase fallout | Michael Goulet | -5/+4 |
| 2024-04-15 | Just use type_dependent_def_id to figure out what the method is for an expr | Michael Goulet | -26/+20 |
| 2024-04-15 | Remove TypeVariableOriginKind | Michael Goulet | -12/+6 |
| 2024-04-15 | Rollup merge of #123924 - compiler-errors:tuple-sugg, r=estebank | Michael Goulet | -63/+2 |
| 2024-04-15 | Rollup merge of #123934 - WaffleLapkin:graph-mini-refactor, r=fmease | 许杰友 Jieyou Xu (Joe) | -18/+10 |
| 2024-04-15 | Use RPITIT for `Successors` and `Predecessors` traits | Maybe Waffle | -3/+1 |
| 2024-04-14 | Make `depth_first_search` into a standalone function | Maybe Waffle | -7/+8 |
| 2024-04-14 | Merge `{With,Graph}{Successors,Predecessors}` into `{Successors,Predecessors}` | Maybe Waffle | -12/+7 |
| 2024-04-14 | Merge `WithNumNodes` into DirectedGraph | Maybe Waffle | -2/+0 |
| 2024-04-14 | Consolidate two copies of ty_kind_suggestion | Michael Goulet | -63/+2 |
| 2024-04-13 | Auto merge of #122603 - estebank:clone-o-rama, r=lcnr | bors | -62/+481 |
| 2024-04-12 | review comments | Esteban Küber | -8/+36 |
| 2024-04-12 | Better account for more cases involving closures | Esteban Küber | -14/+36 |
| 2024-04-12 | Fix rebase | Esteban Küber | -2/+2 |
| 2024-04-12 | Rollup merge of #123599 - matthiaskrgr:rm, r=cjgillot | Matthias Krüger | -1/+1 |
| 2024-04-11 | Rollup merge of #123523 - estebank:issue-123414, r=BoxyUwU | Matthias Krüger | -35/+54 |
| 2024-04-11 | remove some things that do not need to be | Matthias Krüger | -1/+1 |
| 2024-04-11 | Mention when the type of the moved value doesn't implement `Clone` | Esteban Küber | -2/+13 |
| 2024-04-11 | Account for move error in the spread operator on struct literals | Esteban Küber | -11/+107 |
| 2024-04-11 | Better account for `FnOnce` in move errors | Esteban Küber | -7/+72 |
| 2024-04-11 | Account for assign binops in clone suggestions | Esteban Küber | -2/+32 |
| 2024-04-11 | When possible, suggest cloning the result of a call instead of an argument | Esteban Küber | -13/+92 |
| 2024-04-11 | Do not recomment cloning explicit `&mut` expressions | Esteban Küber | -0/+5 |
| 2024-04-11 | Fix accuracy of `T: Clone` check in suggestion | Esteban Küber | -0/+1 |
| 2024-04-11 | Remove unnecessary argument from `suggest_cloning` | Esteban Küber | -21/+9 |
| 2024-04-11 | Silence redundant clone suggestion | Esteban Küber | -0/+5 |
| 2024-04-11 | More move error suggestions to clone | Esteban Küber | -0/+4 |
| 2024-04-11 | Suggest `.clone()` in some move errors | Esteban Küber | -0/+10 |
| 2024-04-11 | Account for unops when suggesting cloning | Esteban Küber | -19/+24 |
| 2024-04-11 | Suggest `.clone()` when moved while borrowed | Esteban Küber | -17/+56 |
| 2024-04-11 | Account for `.clone()` when suggesting `<T as Clone>::clone` | Esteban Küber | -2/+33 |
| 2024-04-11 | Slightly more readable NLL/constraint graph dumps | Amanda Stjerna | -6/+38 |
| 2024-04-11 | Rollup merge of #123704 - estebank:diag-changes, r=compiler-errors | Matthias Krüger | -26/+70 |
| 2024-04-11 | Auto merge of #122213 - estebank:issue-50195, r=oli-obk,estebank | bors | -4/+153 |
| 2024-04-10 | Handle more cases of "values to suggest" given a type | Esteban Küber | -3/+16 |