2022-06-27 05:45:35 +00:00
|
|
|
error[E0277]: `[static generator@$DIR/static-not-unpin.rs:11:25: 11:34]` cannot be unpinned
|
2019-09-16 04:58:20 +00:00
|
|
|
--> $DIR/static-not-unpin.rs:14:18
|
2018-11-04 21:07:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | assert_unpin(generator);
|
2022-06-27 05:45:35 +00:00
|
|
|
| ------------ ^^^^^^^^^ the trait `Unpin` is not implemented for `[static generator@$DIR/static-not-unpin.rs:11:25: 11:34]`
|
2021-09-07 11:30:53 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-03-30 20:51:08 +00:00
|
|
|
|
|
|
|
|
= note: consider using `Box::pin`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `assert_unpin`
|
|
|
|
--> $DIR/static-not-unpin.rs:7:20
|
|
|
|
|
|
|
|
|
LL | fn assert_unpin<T: Unpin>(_: T) {
|
|
|
|
| ^^^^^ required by this bound in `assert_unpin`
|
2018-11-04 21:07:55 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|