]> git.proxmox.com Git - rustc.git/blob - tests/ui/mir/issue-67947.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / mir / issue-67947.stderr
1 error[E0161]: cannot move a value of type `str`
2 --> $DIR/issue-67947.rs:2:13
3 |
4 LL | A: [(); { *"" }.len()],
5 | ^^^^^^^ the size of `str` cannot be statically determined
6
7 error[E0507]: cannot move out of a shared reference
8 --> $DIR/issue-67947.rs:2:15
9 |
10 LL | A: [(); { *"" }.len()],
11 | ^^^ move occurs because value has type `str`, which does not implement the `Copy` trait
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0161, E0507.
16 For more information about an error, try `rustc --explain E0161`.