2022-04-11 16:38:48 +00:00
|
|
|
error[E0277]: the trait bound `Bar: Copy` is not satisfied
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/nll-fail.rs:11:38
|
2019-05-26 11:57:00 +00:00
|
|
|
|
|
|
|
|
LL | let arr: [Option<Bar>; 2] = [x; 2];
|
2022-04-11 16:38:48 +00:00
|
|
|
| ^ the trait `Copy` is not implemented for `Bar`
|
2019-05-26 11:57:00 +00:00
|
|
|
|
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `Option<Bar>` to implement `Copy`
|
2022-04-28 09:40:42 +00:00
|
|
|
= note: the `Copy` trait is required because this value will be copied for each element of the array
|
2022-04-11 16:38:48 +00:00
|
|
|
help: consider annotating `Bar` with `#[derive(Copy)]`
|
|
|
|
|
|
|
|
|
LL | #[derive(Copy)]
|
|
|
|
|
|
2019-05-26 11:57:00 +00:00
|
|
|
|
2022-04-11 16:38:48 +00:00
|
|
|
error[E0277]: the trait bound `Bar: Copy` is not satisfied
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/nll-fail.rs:17:38
|
2019-05-26 11:57:00 +00:00
|
|
|
|
|
|
|
|
LL | let arr: [Option<Bar>; 2] = [x; 2];
|
2022-04-11 16:38:48 +00:00
|
|
|
| ^ the trait `Copy` is not implemented for `Bar`
|
2019-05-26 11:57:00 +00:00
|
|
|
|
|
2022-08-15 20:31:37 +00:00
|
|
|
= note: required for `Option<Bar>` to implement `Copy`
|
2022-04-28 09:40:42 +00:00
|
|
|
= note: the `Copy` trait is required because this value will be copied for each element of the array
|
2022-04-11 16:38:48 +00:00
|
|
|
help: consider annotating `Bar` with `#[derive(Copy)]`
|
|
|
|
|
|
|
|
|
LL | #[derive(Copy)]
|
|
|
|
|
|
2019-05-26 11:57:00 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-06-12 07:26:16 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|