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