]> git.proxmox.com Git - rustc.git/blame - tests/ui/repeat-expr/repeat-to-run-dtor-twice.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / repeat-expr / repeat-to-run-dtor-twice.stderr
CommitLineData
04454e1e
FG
1error[E0277]: the trait bound `Foo: Copy` is not satisfied
2 --> $DIR/repeat-to-run-dtor-twice.rs:17:15
3 |
4LL | let _ = [ a; 5 ];
5 | ^ the trait `Copy` is not implemented for `Foo`
6 |
7 = note: the `Copy` trait is required because this value will be copied for each element of the array
8help: consider annotating `Foo` with `#[derive(Copy)]`
9 |
353b0b11
FG
10LL + #[derive(Copy)]
11LL | struct Foo {
04454e1e
FG
12 |
13
4b012472 14error: aborting due to 1 previous error
04454e1e
FG
15
16For more information about this error, try `rustc --explain E0277`.