| Age | Commit message (Expand) | Author | Lines |
| 2022-07-08 | Check if E0530 is `tuple variant` or `tuple struct` to emit suggestion | Obei Sideg | -2/+2 |
| 2022-07-02 | Handle fresh lifetimes on bare trait objects. | Camille GILLOT | -0/+24 |
| 2022-06-23 | Remove excess rib while resolving closures | Maybe Waffle | -1/+3 |
| 2022-06-21 | Use CreateParameter mode for closures too. | Camille GILLOT | -5/+10 |
| 2022-06-21 | Always create parameters for functions-like types. | Camille GILLOT | -53/+140 |
| 2022-06-19 | Leave the responsibility to create `Fresh` lifetimes to lowering. | Camille GILLOT | -23/+11 |
| 2022-06-19 | Make matches exhaustive. | Camille GILLOT | -3/+9 |
| 2022-06-19 | Remove the `region` terminology. | Camille GILLOT | -9/+9 |
| 2022-06-18 | Separate `AnonymousCreateParameter` and `ReportElidedInPath`. | Camille GILLOT | -62/+93 |
| 2022-06-18 | Refactor visit_fn. | Camille GILLOT | -65/+96 |
| 2022-06-18 | Rustfmt resolve_implementation. | Camille GILLOT | -39/+57 |
| 2022-06-18 | Extract AssocItem handling. | Camille GILLOT | -166/+131 |
| 2022-06-15 | box `diagnostic_metadata` field | Takayuki Maeda | -2/+2 |
| 2022-06-14 | Make ResolverAstLowering a struct. | Camille GILLOT | -2/+1 |
| 2022-06-11 | Rollup merge of #97812 - TaKO8Ki:suggest-to-swap-struct-and-trait, r=estebank | Dylan DPC | -1/+8 |
| 2022-06-09 | Do not introduce bindings for types and consts in HRTB. | Camille GILLOT | -1/+6 |
| 2022-06-07 | suggest swapping a struct and a trait | Takayuki Maeda | -1/+8 |
| 2022-06-05 | Rename `visit_generic_param{_slice => s}` | Maybe Waffle | -5/+5 |
| 2022-06-03 | Replace `&Vec<_>`s with `&[_]`s | Maybe Waffle | -6/+6 |
| 2022-06-03 | Use the same message as type & const generics. | Camille GILLOT | -28/+20 |
| 2022-06-03 | Reuse resolve_label to check lifetime shadowing. | Camille GILLOT | -33/+20 |
| 2022-06-03 | Do not lower generic lifetime params when AST resolution emitted an error. | Camille GILLOT | -0/+7 |
| 2022-06-02 | Stop warning against unrelated labels. | Camille GILLOT | -1/+0 |
| 2022-06-02 | Do not report mixed label/lifetime shadowing. | Camille GILLOT | -38/+12 |
| 2022-06-02 | Diagnose shadowing on AST. | Camille GILLOT | -26/+93 |
| 2022-05-21 | Fix broken intra-doc link | Michael Howell | -1/+1 |
| 2022-05-20 | Remove `crate` visibility usage in compiler | Jacob Pratt | -9/+9 |
| 2022-05-20 | Lint single-use-lifetimes on the AST. | Camille GILLOT | -52/+126 |
| 2022-05-20 | Introduce BareFnTy::decl_span and fix generics span. | Camille GILLOT | -12/+3 |
| 2022-05-20 | Introduce LifetimeCtxt. | Camille GILLOT | -2/+2 |
| 2022-05-07 | Permit asm_const and asm_sym to reference outer generic params | Gary Guo | -0/+23 |
| 2022-05-06 | Rollup merge of #96557 - nbdd0121:const, r=oli-obk | Guillaume Gomez | -1/+8 |
| 2022-05-05 | Rollup merge of #96507 - TaKO8Ki:suggest-calling-associated-function, r=lcnr | Matthias Krüger | -0/+5 |
| 2022-05-05 | suggest calling `Self::associated_function()` | Takayuki Maeda | -0/+5 |
| 2022-05-04 | Auto merge of #96353 - estebank:issue-95413, r=compiler-errors | bors | -0/+2 |
| 2022-05-03 | Auto merge of #95380 - compiler-errors:unit-destructure-assign, r=nikomatsakis | bors | -7/+4 |
| 2022-05-03 | Allow inline consts to reference generic params | Gary Guo | -1/+8 |
| 2022-05-03 | Rollup merge of #96641 - oli-obk:bool_args, r=wesleywiser | Yuki Okushi | -26/+48 |
| 2022-05-03 | When suggesting to import an item, also suggest changing the path if appropriate | Esteban Küber | -0/+2 |
| 2022-05-02 | Use a yes/no enum instead of a bool. | Oli Scherer | -26/+48 |
| 2022-05-02 | rustc: Panic by default in `DefIdTree::parent` | Vadim Petrochenkov | -6/+2 |
| 2022-05-01 | resolve: Rename `unusable_binding` to `ignore_binding` | Vadim Petrochenkov | -2/+2 |
| 2022-05-01 | resolve: Turn `enum Finalize` into an optional struct | Vadim Petrochenkov | -32/+23 |
| 2022-04-30 | Auto merge of #95776 - cjgillot:ast-lifetimes-static, r=petrochenkov | bors | -9/+39 |
| 2022-04-30 | When encountering a binding that could be a const or unit variant, suggest th... | Esteban Kuber | -11/+14 |
| 2022-04-30 | Ban non-static lifetimes from AnonConst on AST. | Camille GILLOT | -6/+21 |
| 2022-04-29 | Remove `error` variable. | Camille GILLOT | -5/+3 |
| 2022-04-29 | Use the correct lifetime binder for elided lifetimes in path. | Camille GILLOT | -11/+14 |
| 2022-04-29 | Ban non-static in const generics in AST. | Camille GILLOT | -4/+19 |
| 2022-04-27 | Auto merge of #91557 - cjgillot:ast-lifetimes-named, r=petrochenkov | bors | -48/+186 |