| Age | Commit message (Expand) | Author | Lines |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -12053/+0 |
| 2023-01-09 | Consider method return type for various method suggestions | Michael Goulet | -0/+33 |
| 2023-01-08 | Mention signature rather than fn pointers when comparing impl/trait methods | Michael Goulet | -2/+2 |
| 2023-01-01 | Verbose suggestions | Esteban Küber | -4/+10 |
| 2022-12-30 | Add regression test for #105501 | Arpad Borsos | -0/+165 |
| 2022-12-22 | Rollup merge of #104741 - bryangarza:bug-104588-async-track-caller, r=compile... | Matthias Krüger | -22/+52 |
| 2022-12-21 | Update track_caller tests; run fmt | Bryan Garza | -15/+7 |
| 2022-12-21 | Test that async blocks are UnwindSafe | Arpad Borsos | -0/+68 |
| 2022-12-21 | Improve code based on feedback. | Bryan Garza | -23/+7 |
| 2022-12-21 | Update track_caller logic/lint after rebase | Bryan Garza | -7/+12 |
| 2022-12-21 | update wording of lint | Bryan Garza | -2/+2 |
| 2022-12-21 | Update code based on PR comments | Bryan Garza | -102/+40 |
| 2022-12-21 | Switch `#[track_caller]` back to a no-op unless feature gate is enabled | Bryan Garza | -0/+111 |
| 2022-12-20 | Add regression test for #102206 | Yuki Okushi | -0/+31 |
| 2022-12-19 | Revert "Replace usage of `ResumeTy` in async lowering with `Context`" | Andrew Pollack | -9/+6 |
| 2022-12-17 | Rollup merge of #105711 - compiler-errors:rpitit-references-errors, r=eholk | Matthias Krüger | -0/+42 |
| 2022-12-15 | Rollup merge of #105692 - JohnTitor:issue-104678, r=compiler-errors | Matthias Krüger | -0/+31 |
| 2022-12-14 | Ensure async trait impls are async (or otherwise return an opaque type) | Dan Johnson | -25/+99 |
| 2022-12-14 | bail in collect_trait_impl_trait_tys if signatures reference errors | Michael Goulet | -0/+42 |
| 2022-12-14 | Add regression test for #104678 | Yuki Okushi | -0/+31 |
| 2022-12-13 | Rollup merge of #105500 - oli-obk:unhide_unknown_spans, r=estebank | Matthias Krüger | -53/+17 |
| 2022-12-13 | Rollup merge of #105464 - nbdd0121:hir, r=compiler-errors | Matthias Krüger | -1/+65 |
| 2022-12-13 | Use a label instead of a note for the drop site to create denser diagnostics | Oli Scherer | -35/+15 |
| 2022-12-13 | Make some diagnostics not depend on the source of what they reference being a... | Oli Scherer | -18/+2 |
| 2022-12-08 | Support `#[track_caller]` on async closures | Gary Guo | -1/+65 |
| 2022-12-08 | Rollup merge of #105255 - cjgillot:issue-105197, r=compiler-errors | Matthias Krüger | -0/+17 |
| 2022-12-07 | Rollup merge of #105267 - compiler-errors:issue-104613, r=oli-obk | Matthias Krüger | -0/+33 |
| 2022-12-06 | Rollup merge of #105250 - Swatinem:async-rm-resumety, r=oli-obk | Matthias Krüger | -6/+9 |
| 2022-12-06 | Rollup merge of #105318 - compiler-errors:issue-105304, r=jackh726 | Matthias Krüger | -0/+37 |
| 2022-12-06 | Replace usage of `ResumeTy` in async lowering with `Context` | Arpad Borsos | -6/+9 |
| 2022-12-05 | Rollup merge of #105180 - nbdd0121:async_track_caller, r=compiler-errors | Matthias Krüger | -0/+25 |
| 2022-12-05 | Make get_impl_future_output_ty work with AFIT | Michael Goulet | -0/+37 |
| 2022-12-05 | Unconditional check FRU expression, even if there are errors present | Michael Goulet | -0/+33 |
| 2022-12-04 | Auto merge of #105094 - Swatinem:generator-not-future, r=compiler-errors | bors | -0/+126 |
| 2022-12-04 | Make nested RPITIT inherit the parent opaque's generics. | Camille GILLOT | -0/+17 |
| 2022-12-04 | Use parent function WfCheckingContext to check RPITIT. | Camille GILLOT | -58/+23 |
| 2022-12-02 | Fix async track caller for assoc fn and trait impl fn | Gary Guo | -0/+14 |
| 2022-12-02 | Use proper HirId for async track_caller attribute check | Gary Guo | -0/+11 |
| 2022-12-02 | Check lifetime param count in collect_trait_impl_trait_tys | Michael Goulet | -0/+41 |
| 2022-11-30 | Make sure async constructs do not `impl Generator` | Arpad Borsos | -0/+126 |
| 2022-11-27 | Rollup merge of #104931 - Swatinem:async-pretty, r=eholk | Matthias Krüger | -13/+13 |
| 2022-11-26 | Rewrite dest prop. | Jakob Degen | -8/+9 |
| 2022-11-26 | Pretty-print generators with their `generator_kind` | Arpad Borsos | -13/+13 |
| 2022-11-24 | Auto merge of #104321 - Swatinem:async-gen, r=oli-obk | bors | -45/+33 |
| 2022-11-24 | Avoid `GenFuture` shim when compiling async constructs | Arpad Borsos | -45/+33 |
| 2022-11-23 | Pass InferCtxt to DropRangeVisitor so we can resolve vars | Michael Goulet | -0/+168 |
| 2022-11-21 | Auto merge of #103491 - cjgillot:self-rpit, r=oli-obk | bors | -65/+72 |
| 2022-11-19 | Improve spans for RPITIT object-safety errors | Michael Goulet | -0/+40 |
| 2022-11-17 | Rollup merge of #103852 - compiler-errors:rpitit-early-from-impl, r=lcnr | Matthias Krüger | -0/+32 |
| 2022-11-17 | Auto merge of #104219 - bryangarza:async-track-caller-dup, r=eholk | bors | -0/+76 |