]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/move-error-in-promoted-2.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / move-error-in-promoted-2.stderr
1 error[E0508]: cannot move out of type `[S; 1]`, a non-copy array
2   --> $DIR/move-error-in-promoted-2.rs:6:7
3    |
4 LL |     &([S][0],);
5    |       ^^^^^^
6    |       |
7    |       cannot move out of here
8    |       move occurs because value has type `S`, 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`.