]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/move-error-in-promoted.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / move-error-in-promoted.stderr
1 error[E0508]: cannot move out of type `[S2; 1]`, a non-copy array
2   --> $DIR/move-error-in-promoted.rs:5:16
3    |
4 LL |     let _ = S1(C[0]).clone();
5    |                ^^^^
6    |                |
7    |                cannot move out of here
8    |                move occurs because value has type `S2`, which does not implement the `Copy` trait
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0508`.