| Age | Commit message (Expand) | Author | Lines |
| 2024-02-27 | Flesh out a few more tests | Michael Goulet | -9/+36 |
| 2024-02-27 | Also support `fnptr(): async Fn` in codegen | Michael Goulet | -0/+31 |
| 2024-02-27 | Support `{async closure}: Fn` in new solver | Michael Goulet | -2/+28 |
| 2024-02-27 | Adjust error yield/await lowering | Michael Goulet | -0/+21 |
| 2024-02-26 | Rollup merge of #121617 - compiler-errors:async-closure-kind-check, r=oli-obk | Matthias Krüger | -5/+30 |
| 2024-02-26 | Actually use the right closure kind when checking async Fn goals | Michael Goulet | -5/+30 |
| 2024-02-25 | Auto merge of #120393 - Urgau:rfc3373-non-local-defs, r=WaffleLapkin | bors | -0/+2 |
| 2024-02-22 | Tweak wording of "implemented trait isn't imported" suggestion | Esteban Küber | -1/+1 |
| 2024-02-21 | Rollup merge of #121044 - compiler-errors:mbe-async-trait-bounds, r=fmease | León Orell Valerian Liehr | -4/+141 |
| 2024-02-20 | Support async trait bounds in macros | Michael Goulet | -4/+141 |
| 2024-02-20 | Fix stray trait mismatch in resolve_associated_item for AsyncFn | Michael Goulet | -1/+26 |
| 2024-02-18 | Add `Future` and `IntoFuture` to the 2024 prelude | Nilstrieb | -2/+0 |
| 2024-02-18 | Rollup merge of #121237 - Urgau:better-cargo-heuristic, r=compiler-errors | León Orell Valerian Liehr | -1/+1 |
| 2024-02-18 | Rollup merge of #121100 - estebank:issue-71252, r=compiler-errors | León Orell Valerian Liehr | -0/+5 |
| 2024-02-17 | Use better heuristic for printing Cargo specific diagnostics | Urgau | -1/+1 |
| 2024-02-17 | Allow newly added non_local_definitions lint in tests | Urgau | -0/+2 |
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -606/+606 |
| 2024-02-16 | Detect when method call on argument could be removed to fulfill failed trait ... | Esteban Küber | -0/+5 |
| 2024-02-15 | make better async fn kind errors | Michael Goulet | -7/+39 |
| 2024-02-12 | Properly handle `async` blocks and `fn`s in `if` exprs without `else` | Esteban Küber | -0/+79 |
| 2024-02-11 | Rollup merge of #120897 - compiler-errors:foreign-async-closure, r=oli-obk | Matthias Krüger | -0/+26 |
| 2024-02-10 | Print kind of coroutine closure | Michael Goulet | -3/+3 |
| 2024-02-10 | Encode coroutine_for_closure for foreign crates | Michael Goulet | -0/+26 |
| 2024-02-10 | Auto merge of #120712 - compiler-errors:async-closures-harmonize, r=oli-obk | bors | -10/+71 |
| 2024-02-10 | Rollup merge of #120629 - c410-f3r:testsssssss, r=petrochenkov | Matthias Krüger | -0/+81 |
| 2024-02-10 | Rollup merge of #120584 - compiler-errors:u, r=lcnr | Matthias Krüger | -30/+5 |
| 2024-02-09 | Move some tests | Caio | -0/+81 |
| 2024-02-09 | Rollup merge of #120844 - compiler-errors:async-di, r=oli-obk | Matthias Krüger | -6/+0 |
| 2024-02-09 | Build DebugInfo for coroutine-closure | Michael Goulet | -6/+0 |
| 2024-02-09 | Don't ICE in ByMoveBody when coroutine is tainted | Michael Goulet | -0/+22 |
| 2024-02-09 | For a rigid projection, recursively look at the self type's item bounds | Michael Goulet | -30/+5 |
| 2024-02-08 | Add a couple more tests | Michael Goulet | -0/+40 |
| 2024-02-08 | Prefer AsyncFn* over Fn* for coroutine-closures | Michael Goulet | -9/+30 |
| 2024-02-08 | Auto merge of #120767 - matthiaskrgr:rollup-0k8ib1c, r=matthiaskrgr | bors | -20/+51 |
| 2024-02-08 | Continue to borrowck even if there were previous errors | Oli Scherer | -4/+44 |
| 2024-02-08 | Rollup merge of #120103 - compiler-errors:concrete-afits, r=oli-obk | Matthias Krüger | -20/+51 |
| 2024-02-08 | Auto merge of #120558 - oli-obk:missing_impl_item_ice, r=estebank | bors | -18/+3 |
| 2024-02-06 | Rollup merge of #120707 - compiler-errors:suitable-region, r=nnethercote | Matthias Krüger | -0/+38 |
| 2024-02-06 | Regular closures now built-in impls for AsyncFn* | Michael Goulet | -1/+1 |
| 2024-02-06 | Make async closures test use async bound modifier | Michael Goulet | -30/+20 |
| 2024-02-06 | Don't expect early-bound region to be local in RPITIT well-formedness | Michael Goulet | -0/+38 |
| 2024-02-06 | Auto merge of #120361 - compiler-errors:async-closures, r=oli-obk | bors | -35/+599 |
| 2024-02-06 | Fudge coroutine argument for CoroutineKindShim in fn_sig_for_fn_abi | Michael Goulet | -2/+0 |
| 2024-02-06 | Fix drop shim for AsyncFnOnce closure, AsyncFnMut shim for AsyncFn closure | Michael Goulet | -6/+110 |
| 2024-02-06 | Add some tests | Michael Goulet | -4/+386 |
| 2024-02-06 | Bless tests, add comments | Michael Goulet | -66/+82 |
| 2024-02-06 | Make sure that async closures (and fns) only capture their parent callable's ... | Michael Goulet | -5/+69 |
| 2024-02-06 | Auto merge of #120392 - compiler-errors:async-bound-modifier, r=davidtwco,fmease | bors | -0/+274 |
| 2024-02-05 | Make sure refinement still works | Michael Goulet | -3/+53 |
| 2024-02-05 | Make the error message better | Michael Goulet | -9/+6 |