diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-04-11 13:15:34 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-04-24 08:05:29 +0000 |
| commit | dda4709b1cba078ab05a32aa9c9359537e0ae0ad (patch) | |
| tree | f4fac428583c9bf94480ded07ee7734df21a3c72 /example/std_example.rs | |
| parent | 36449f8cd6a2166dec0799499218f89e2b25402c (diff) | |
Error on using `yield` without also using `#[coroutine]` on the closure
And suggest adding the `#[coroutine]` to the closure
Diffstat (limited to 'example/std_example.rs')
| -rw-r--r-- | example/std_example.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/example/std_example.rs b/example/std_example.rs index 0205de55622..90d4ab721da 100644 --- a/example/std_example.rs +++ b/example/std_example.rs @@ -1,6 +1,7 @@ #![feature( core_intrinsics, coroutines, + stmt_expr_attributes, coroutine_trait, is_sorted, repr_simd, @@ -123,9 +124,12 @@ fn main() { test_simd(); } - Box::pin(move |mut _task_context| { - yield (); - }) + Box::pin( + #[coroutine] + move |mut _task_context| { + yield (); + }, + ) .as_mut() .resume(0); |
