| Age | Commit message (Expand) | Author | Lines |
| 2021-02-02 | Rollup merge of #81636 - LingMan:slice_not_vec, r=petrochenkov | Jack Huey | -2/+2 |
| 2021-02-02 | Auto merge of #81405 - bugadani:ast, r=cjgillot | bors | -1/+3 |
| 2021-02-02 | Auto merge of #80843 - Mark-Simulacrum:fmt-bump, r=petrochenkov | bors | -10/+16 |
| 2021-02-02 | Bump rustfmt version | Mark Rousskov | -10/+16 |
| 2021-02-01 | Directly use `Option<&[T]>` instead of converting from `Option<&Vec<T>>` late... | LingMan | -2/+2 |
| 2021-02-01 | Remove unneeded `mut` variable | LingMan | -8/+1 |
| 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 | Add loop head span to hir | Esteban Küber | -1/+1 |
| 2021-01-21 | Suggest `'a` when given `a` only when appropriate | Esteban Küber | -9/+13 |
| 2021-01-18 | Rollup merge of #81105 - LingMan:init_directly, r=nagisa | Ashley Mannix | -12/+9 |
| 2021-01-17 | Initialize a few variables directly | LingMan | -12/+9 |
| 2021-01-16 | correctly deal with late-bound lifetimes in anon consts | Bastian Kauschke | -2/+30 |
| 2021-01-15 | Rollup merge of #80944 - LingMan:map_or, r=nagisa | Yuki Okushi | -3/+2 |
| 2021-01-14 | Use Option::map_or instead of `.map(..).unwrap_or(..)` | LingMan | -3/+2 |
| 2021-01-14 | Auto merge of #79689 - Vooblin:patch1, r=tmandry | bors | -10/+10 |
| 2021-01-13 | Auto merge of #77524 - Patryk27:fixes/66228, r=estebank | bors | -1/+1 |
| 2021-01-12 | Separate out a `hir::Impl` struct | Joshua Nelson | -4/+4 |
| 2021-01-10 | Rework diagnostics for wrong number of generic args | Patryk Wychowaniec | -1/+1 |
| 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 | -5/+5 |
| 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-12-04 | Update tests of "unused_lifetimes" lint for async functions and corresponding... | Dmitry Murygin | -10/+10 |
| 2020-12-02 | Tweak diagnostics on shadowing lifetimes/labels | Yuki Okushi | -1/+1 |
| 2020-11-26 | Remove ForeignMod struct. | Camille GILLOT | -1/+1 |
| 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 | -34/+20 |
| 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 |
| 2020-10-09 | Suggest removing bounds even when potential typo | Esteban Küber | -15/+21 |
| 2020-10-09 | Tweak output and add test cases | Esteban Küber | -5/+51 |
| 2020-10-09 | Point out why a trait is expected on `Struct + 'lt` | Esteban Küber | -1/+10 |
| 2020-10-07 | Auto merge of #77341 - davidtwco:issue-73427-you-might-have-meant-variant, r=... | bors | -21/+124 |
| 2020-10-02 | resolve: prohibit anon const non-static lifetimes | David Wood | -0/+33 |
| 2020-09-29 | resolve: improve "try using the enum's variant" | David Wood | -21/+124 |
| 2020-09-17 | use strip_prefix over starts_with and manual slicing based on pattern length ... | Matthias Krüger | -2/+2 |
| 2020-09-15 | fix a couple of stylistic clippy warnings | Matthias Krüger | -1/+1 |
| 2020-09-11 | Auto merge of #76499 - guswynn:priv_des, r=petrochenkov | bors | -10/+45 |
| 2020-09-11 | Give better diagnostic when using a private tuple struct constructor | Gus Wynn | -10/+45 |