]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mir/issue-67947.stderr
Merge commit 'e18101137866b79045fee0ef996e696e68c920b4' into clippyup
[rust.git] / src / test / ui / mir / issue-67947.stderr
1 error[E0161]: cannot move a value of type str: the size of str cannot be statically determined
2   --> $DIR/issue-67947.rs:2:13
3    |
4 LL |     A: [(); { *"" }.len()],
5    |             ^^^^^^^
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`.