2024-11-02 17:58:50 +01:00
|
|
|
error[E0277]: `{static coroutine@$DIR/static-not-unpin.rs:16:5: 16:14}` cannot be unpinned
|
|
|
|
--> $DIR/static-not-unpin.rs:19:18
|
2018-11-04 22:07:55 +01:00
|
|
|
|
|
2023-10-19 23:46:28 +02:00
|
|
|
LL | assert_unpin(coroutine);
|
2024-11-02 17:58:50 +01:00
|
|
|
| ------------ ^^^^^^^^^ the trait `Unpin` is not implemented for `{static coroutine@$DIR/static-not-unpin.rs:16:5: 16:14}`
|
2021-09-07 13:30:53 +02:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-03-30 22:51:08 +02:00
|
|
|
|
|
2023-04-13 00:03:11 +02:00
|
|
|
= note: consider using the `pin!` macro
|
|
|
|
consider using `Box::pin` if you need to access the pinned value outside of the current scope
|
2021-07-31 18:26:55 +02:00
|
|
|
note: required by a bound in `assert_unpin`
|
2024-11-02 17:58:50 +01:00
|
|
|
--> $DIR/static-not-unpin.rs:12:20
|
2021-07-31 18:26:55 +02:00
|
|
|
|
|
2024-04-11 15:15:34 +02:00
|
|
|
LL | fn assert_unpin<T: Unpin>(_: T) {}
|
2021-07-31 18:26:55 +02:00
|
|
|
| ^^^^^ required by this bound in `assert_unpin`
|
2018-11-04 22:07:55 +01:00
|
|
|
|
2023-11-21 16:44:16 +01:00
|
|
|
error: aborting due to 1 previous error
|
2018-11-04 22:07:55 +01:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|