| Age | Commit message (Expand) | Author | Lines |
| 2023-11-08 | rustc: minor changes suggested by clippy perf lints. | Nicholas Nethercote | -1/+1 |
| 2023-10-29 | Auto merge of #116447 - oli-obk:gen_fn, r=compiler-errors | bors | -14/+14 |
| 2023-10-27 | Rename `RibKind::ClosureOrAsync` to reflect how it is actually used | Oli Scherer | -12/+12 |
| 2023-10-27 | Add gen blocks to ast and do some broken ast lowering | Oli Scherer | -2/+2 |
| 2023-10-27 | Auto merge of #116858 - estebank:issue-22488, r=petrochenkov | bors | -1/+20 |
| 2023-10-26 | Suggest assoc fn `new` when trying to build tuple struct with private fields | Esteban Küber | -1/+20 |
| 2023-10-26 | Rollup merge of #116905 - Fenex:refactor/compiler/resolve, r=petrochenkov | Matthias Krüger | -11/+10 |
| 2023-10-25 | Rollup merge of #117009 - fmease:diag-disambig-sugg-crate, r=b-naber | Matthias Krüger | -14/+44 |
| 2023-10-22 | use visibility to check unused imports and delete some stmts | bohan | -4/+1 |
| 2023-10-21 | on unresolved import disambiguate suggested path if it would collide | León Orell Valerian Liehr | -14/+44 |
| 2023-10-21 | Rollup merge of #116961 - estebank:issue-60164, r=oli-obk | Matthias Krüger | -2/+15 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -1/+1 |
| 2023-10-20 | Typo suggestion to change bindings with leading underscore | Esteban Küber | -2/+15 |
| 2023-10-19 | refactor(compiler/resolve): simplify some code | Vitaliy Busko | -11/+10 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -144/+211 |
| 2023-10-08 | rustdoc: remove rust logo from non-Rust crates | Michael Howell | -0/+2 |
| 2023-10-05 | Rename `Resolver::active_features`. | Nicholas Nethercote | -9/+4 |
| 2023-10-02 | Rollup merge of #114454 - Nilstrieb:no-evil-sorting, r=cjgillot | Tyler Mandry | -20/+18 |
| 2023-10-02 | Replace `HashMap` with `IndexMap` in pattern binding resolve | Nilstrieb | -20/+18 |
| 2023-10-01 | Auto merge of #116228 - bvanjoi:fix-116164, r=cjgillot | bors | -0/+4 |
| 2023-09-29 | Auto merge of #116089 - estebank:issue-115992-2, r=compiler-errors | bors | -22/+88 |
| 2023-09-28 | resolve: skip underscore character during candidate lookup | bohan | -0/+4 |
| 2023-09-27 | fix clippy::{redundant_guards, useless_format} | Matthias Krüger | -1/+1 |
| 2023-09-27 | Auto merge of #116163 - compiler-errors:lazyness, r=oli-obk | bors | -10/+7 |
| 2023-09-26 | Auto merge of #116125 - RalfJung:const-param-ty-eq, r=compiler-errors | bors | -1/+3 |
| 2023-09-26 | Don't store lazyness in DefKind | Michael Goulet | -10/+7 |
| 2023-09-25 | Point at field definition when unresolved name exists in `Self` | Esteban Küber | -7/+7 |
| 2023-09-25 | When suggesting `self.x` for `S { x }`, use `S { x: self.x }` | Esteban Küber | -15/+81 |
| 2023-09-24 | fix ICE due to empty span and empty suggestions | Ralf Jung | -1/+3 |
| 2023-09-23 | Tweak wording and logic | Esteban Küber | -5/+10 |
| 2023-09-23 | When encountering method on `Self` that we can't suggest, mention it | Esteban Küber | -30/+28 |
| 2023-09-23 | More accurate suggestion for `self.` and `Self::` | Esteban Küber | -5/+12 |
| 2023-09-19 | fix confusing let chain indentation in rustc_resolve | Ethan Brierley | -3/+3 |
| 2023-09-17 | Auto merge of #114452 - weiznich:feature/diagnostic_on_unimplemented, r=compi... | bors | -2/+3 |
| 2023-09-14 | Auto merge of #115677 - matthewjasper:let-expr-recovery, r=b-naber | bors | -1/+1 |
| 2023-09-13 | resolve: determined binding after parent module macro expand | bohan | -11/+18 |
| 2023-09-12 | `#[diagnostic::on_unimplemented]` without filters | Georg Semmler | -2/+3 |
| 2023-09-12 | Auto merge of #115689 - Alexendoo:clippy-doc-comments, r=notriddle,Manisheart... | bors | -1/+88 |
| 2023-09-11 | Move let expression checking to parsing | Matthew Jasper | -1/+1 |
| 2023-09-11 | Rollup merge of #115744 - fmease:fix-e0401, r=compiler-errors | Matthias Krüger | -38/+63 |
| 2023-09-11 | Auto merge of #115504 - bvanjoi:error-struct, r=cjgillot | bors | -8/+17 |
| 2023-09-10 | Do not suggest generic const items unless enabled | León Orell Valerian Liehr | -1/+5 |
| 2023-09-10 | Make E0401 translatable | León Orell Valerian Liehr | -19/+52 |
| 2023-09-10 | Generalize E0401 | León Orell Valerian Liehr | -24/+12 |
| 2023-09-09 | Use `FreezeLock` for `CStore` | John Kåre Alsaker | -3/+3 |
| 2023-09-08 | Reuse rustdoc's doc comment handling in Clippy | Alex Macleod | -1/+88 |
| 2023-09-07 | Find lowest span out of use + attrs | Michael Goulet | -1/+7 |
| 2023-09-04 | resolve: derive diag for undetermined macro resolution | bohan | -8/+17 |
| 2023-09-02 | Auto merge of #115429 - compiler-errors:assoc-ct-lt-fallthrough, r=cjgillot | bors | -34/+29 |
| 2023-09-01 | Auto merge of #113126 - Bryanskiy:delete_old, r=petrochenkov | bors | -6/+0 |