]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-blocks/nll-fail.stderr
Update upstream source from tag 'upstream/1.65.0+dfsg1'
[rustc.git] / src / test / ui / consts / const-blocks / nll-fail.stderr
1 error[E0277]: the trait bound `Bar: Copy` is not satisfied
2 --> $DIR/nll-fail.rs:11:38
3 |
4 LL | let arr: [Option<Bar>; 2] = [x; 2];
5 | ^ the trait `Copy` is not implemented for `Bar`
6 |
7 = note: required for `Option<Bar>` to implement `Copy`
8 = note: the `Copy` trait is required because this value will be copied for each element of the array
9 help: consider annotating `Bar` with `#[derive(Copy)]`
10 |
11 LL | #[derive(Copy)]
12 |
13
14 error[E0277]: the trait bound `Bar: Copy` is not satisfied
15 --> $DIR/nll-fail.rs:17:38
16 |
17 LL | let arr: [Option<Bar>; 2] = [x; 2];
18 | ^ the trait `Copy` is not implemented for `Bar`
19 |
20 = note: required for `Option<Bar>` to implement `Copy`
21 = note: the `Copy` trait is required because this value will be copied for each element of the array
22 help: consider annotating `Bar` with `#[derive(Copy)]`
23 |
24 LL | #[derive(Copy)]
25 |
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0277`.