| Age | Commit message (Expand) | Author | Lines |
| 2021-06-28 | Fix garbled suggestion for missing lifetime specifier | Fabian Wolff | -0/+2 |
| 2021-05-13 | Auto merge of #85041 - mibac138:suggest-generics, r=estebank | bors | -5/+14 |
| 2021-05-12 | Fix diagnostics spans for missing lifetimes in edge cases | Giacomo Stevanato | -6/+28 |
| 2021-05-10 | More minor fixes suggested by @jackh726 | Fabian Wolff | -2/+4 |
| 2021-05-09 | Implement @jackh726's suggestions | Fabian Wolff | -72/+59 |
| 2021-05-07 | Fix suggestions for missing return type lifetime parameters | Fabian Wolff | -146/+205 |
| 2021-05-07 | Fix impl type parameter suggestion involving consts | mibac138 | -1/+8 |
| 2021-05-05 | Suggest adding a type parameter for impls | mibac138 | -4/+6 |
| 2021-05-02 | add suggestion for unit enum variant when matched with a patern | Aliénore Bouttefeux | -12/+31 |
| 2021-04-23 | Auto merge of #83729 - JohnTitor:issue-43913, r=estebank | bors | -1/+8 |
| 2021-04-01 | Add a suggestion when using a type alias instead of trait alias | Yuki Okushi | -1/+8 |
| 2021-03-29 | Do not emit the advanced diagnostics on macros | JohnTitor | -1/+3 |
| 2021-03-27 | Rollup merge of #82917 - cuviper:iter-zip, r=m-ou-se | Dylan DPC | -3/+3 |
| 2021-03-27 | lazily calls some fns | klensy | -5/+5 |
| 2021-03-26 | Use iter::zip in compiler/ | Josh Stone | -3/+3 |
| 2021-03-15 | Custom error on literal names from other languages | Smitty | -0/+26 |
| 2021-03-10 | Rollup merge of #82942 - m-ou-se:diagnostics-hardcoded-prelude-v1, r=estebank | Yuki Okushi | -1/+1 |
| 2021-03-09 | Don't hardcode the `v1` prelude in diagnostics. | Mara Bos | -1/+1 |
| 2021-03-07 | diagnostics: Differentiate between edition meanings of ::foo in resolve diagn... | Manish Goregaokar | -1/+11 |
| 2021-03-03 | reworded message | Esteban Küber | -4/+8 |
| 2021-03-02 | Account for macros when suggesting adding lifetime | Esteban Küber | -8/+17 |
| 2021-02-25 | Rollup merge of #82087 - estebank:abolish-ice, r=oli-obk | Dylan DPC | -20/+8 |
| 2021-02-16 | avoid full-slicing slices | Matthias Krüger | -1/+1 |
| 2021-02-13 | Fix ICE caused by suggestion with no code substitutions | Esteban Küber | -20/+8 |
| 2021-02-06 | Rollup merge of #81680 - camsteffen:primty, r=oli-obk | Jonas Schievink | -2/+2 |
| 2021-02-03 | Refactor out PrimitiveTypeTable | Cameron Steffen | -2/+2 |
| 2021-02-02 | Auto merge of #81405 - bugadani:ast, r=cjgillot | bors | -1/+3 |
| 2021-02-02 | Bump rustfmt version | Mark Rousskov | -10/+16 |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -1/+3 |
| 2021-01-21 | Avoid emitting redundant "unused label" lint | Esteban Küber | -1/+3 |
| 2021-01-21 | Suggest `'a` when given `a` only when appropriate | Esteban Küber | -9/+13 |
| 2021-01-14 | Use Option::map_or instead of `.map(..).unwrap_or(..)` | LingMan | -3/+2 |
| 2020-12-31 | Consistently call editions "Rust 20xx" in messages. | Mara Bos | -2/+2 |
| 2020-12-28 | Rollup merge of #80344 - matthiaskrgr:matches, r=Dylan-DPC | Dylan DPC | -11/+8 |
| 2020-12-26 | stabilize min_const_generics | Bastian Kauschke | -3/+3 |
| 2020-12-24 | use matches!() macro in more places | Matthias Krüger | -11/+8 |
| 2020-12-17 | Enhance error message when misspelled label to value in break expression | Daiki Ihara | -0/+20 |
| 2020-11-24 | Move lev_distance to rustc_ast, make non-generic | Arlie Davis | -4/+5 |
| 2020-11-15 | Rollup merge of #77802 - jyn514:bootstrap-specific, r=nikomatsakis | Jonas Schievink | -3/+2 |
| 2020-11-08 | rustc_resolve: Use `#![feature(format_args_capture)]` | Vadim Petrochenkov | -1/+1 |
| 2020-11-07 | Allow making `RUSTC_BOOTSTRAP` conditional on the crate name | Joshua Nelson | -3/+2 |
| 2020-11-04 | fix a couple of clippy warnings: | Matthias Krüger | -3/+2 |
| 2020-11-01 | Auto merge of #78420 - estebank:suggest-assoc-fn, r=petrochenkov | bors | -11/+47 |
| 2020-10-30 | Fix even more clippy warnings | Joshua Nelson | -8/+4 |
| 2020-10-26 | Suggest calling associated `fn` inside `trait`s | Esteban Küber | -11/+47 |
| 2020-10-26 | resolve: private fields in tuple struct ctor diag | David Wood | -44/+61 |
| 2020-10-15 | resolve: improve "try using tuple struct" message | David Wood | -11/+11 |
| 2020-10-15 | resolve: suggest variants with placeholders | David Wood | -60/+86 |
| 2020-10-09 | address review comments | Esteban Küber | -8/+16 |
| 2020-10-09 | Given `<T as Trait>::A: Ty` suggest `T: Trait<A = Ty>` | Esteban Küber | -0/+118 |