]> git.proxmox.com Git - rustc.git/blob - src/test/ui/access-mode-in-closures.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / access-mode-in-closures.stderr
1 error[E0507]: cannot move out of `s.0` which is behind a shared reference
2 --> $DIR/access-mode-in-closures.rs:8:15
3 |
4 LL | match *s { S(v) => v }
5 | ^^ -
6 | | |
7 | | data moved here
8 | | move occurs because `v` has type `Vec<isize>`, which does not implement the `Copy` trait
9 | help: consider borrowing here: `&*s`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0507`.