2022-04-11 16:38:48 +00:00
|
|
|
error[E0277]: the trait bound `Bar: Copy` is not satisfied
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/nll-fail.rs:11:38
|
2019-05-26 12:57:00 +01: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 12:57:00 +01:00
|
|
|
|
|
2022-08-15 21:31:37 +01: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)]`
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + #[derive(Copy)]
|
|
|
|
LL | struct Bar;
|
2022-04-11 16:38:48 +00:00
|
|
|
|
|
2019-05-26 12:57:00 +01:00
|
|
|
|
2022-04-11 16:38:48 +00:00
|
|
|
error[E0277]: the trait bound `Bar: Copy` is not satisfied
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/nll-fail.rs:17:38
|
2019-05-26 12:57:00 +01: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 12:57:00 +01:00
|
|
|
|
|
2022-08-15 21:31:37 +01: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)]`
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + #[derive(Copy)]
|
|
|
|
LL | struct Bar;
|
2022-04-11 16:38:48 +00:00
|
|
|
|
|
2019-05-26 12:57:00 +01:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-06-12 08:26:16 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|