2025-06-13 09:20:48 +02:00
|
|
|
error[E0626]: borrow may still be in use when coroutine yields
|
|
|
|
|
--> $DIR/auto-trait-regions.rs:45:19
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
2025-06-09 17:52:41 +00:00
|
|
|
LL | let generator = #[coroutine] move || {
|
|
|
|
|
| ------- within this coroutine
|
2022-10-01 12:19:31 +02:00
|
|
|
LL | let a = A(&mut true, &mut true, No);
|
2025-06-13 09:20:48 +02:00
|
|
|
| ^^^^^^^^^
|
2022-10-01 12:19:31 +02:00
|
|
|
...
|
2025-06-13 09:20:48 +02:00
|
|
|
LL | yield;
|
|
|
|
|
| ----- possible yield occurs here
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
2025-06-13 09:20:48 +02:00
|
|
|
help: add `static` to mark this coroutine as unmovable
|
2023-04-12 18:45:43 +00:00
|
|
|
|
|
2025-06-09 17:52:41 +00:00
|
|
|
LL | let generator = #[coroutine] static move || {
|
|
|
|
|
| ++++++
|
2022-10-01 12:19:31 +02:00
|
|
|
|
2025-06-13 09:20:48 +02:00
|
|
|
error[E0626]: borrow may still be in use when coroutine yields
|
|
|
|
|
--> $DIR/auto-trait-regions.rs:45:30
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
2025-06-09 17:52:41 +00:00
|
|
|
LL | let generator = #[coroutine] move || {
|
|
|
|
|
| ------- within this coroutine
|
2022-10-01 12:19:31 +02:00
|
|
|
LL | let a = A(&mut true, &mut true, No);
|
2025-06-13 09:20:48 +02:00
|
|
|
| ^^^^^^^^^
|
2022-10-01 12:19:31 +02:00
|
|
|
...
|
2025-06-13 09:20:48 +02:00
|
|
|
LL | yield;
|
|
|
|
|
| ----- possible yield occurs here
|
2023-04-12 18:45:43 +00:00
|
|
|
|
|
2025-06-13 09:20:48 +02:00
|
|
|
help: add `static` to mark this coroutine as unmovable
|
2023-04-12 18:45:43 +00:00
|
|
|
|
|
2025-06-09 17:52:41 +00:00
|
|
|
LL | let generator = #[coroutine] static move || {
|
|
|
|
|
| ++++++
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
|
|
|
error: implementation of `Foo` is not general enough
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/auto-trait-regions.rs:31:5
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
2025-06-09 17:45:25 +00:00
|
|
|
LL | assert_foo(generator);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ implementation of `Foo` is not general enough
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
|
|
|
|
= note: `&'0 OnlyFooIfStaticRef` must implement `Foo`, for any lifetime `'0`...
|
|
|
|
|
= note: ...but `Foo` is actually implemented for the type `&'static OnlyFooIfStaticRef`
|
|
|
|
|
|
|
|
|
|
error: implementation of `Foo` is not general enough
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/auto-trait-regions.rs:51:5
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
2025-06-09 17:45:25 +00:00
|
|
|
LL | assert_foo(generator);
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ implementation of `Foo` is not general enough
|
2022-10-01 12:19:31 +02:00
|
|
|
|
|
|
|
|
|
= note: `Foo` would have to be implemented for the type `A<'0, '1>`, for any two lifetimes `'0` and `'1`...
|
|
|
|
|
= note: ...but `Foo` is actually implemented for the type `A<'_, '2>`, for some specific lifetime `'2`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
2025-06-13 09:20:48 +02:00
|
|
|
For more information about this error, try `rustc --explain E0626`.
|