2018-11-07 12:01:35 -06:00
|
|
|
error[E0277]: the trait bound `[static generator@$DIR/static-not-unpin.rs:11:25: 13:6 _]: std::marker::Unpin` is not satisfied
|
2019-09-15 23:58:20 -05:00
|
|
|
--> $DIR/static-not-unpin.rs:14:18
|
2018-11-04 15:07:55 -06:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn assert_unpin<T: Unpin>(_: T) {
|
2019-09-04 12:17:59 -05:00
|
|
|
| ------------ ----- required by this bound in `assert_unpin`
|
2019-08-24 16:44:43 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | assert_unpin(generator);
|
2019-09-15 23:58:20 -05:00
|
|
|
| ^^^^^^^^^ the trait `std::marker::Unpin` is not implemented for `[static generator@$DIR/static-not-unpin.rs:11:25: 13:6 _]`
|
2018-11-04 15:07:55 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|