]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/issue-31287-drop-in-guard.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / borrowck / issue-31287-drop-in-guard.stderr
CommitLineData
416331ca
XL
1error[E0382]: use of moved value: `a`
2 --> $DIR/issue-31287-drop-in-guard.rs:5:9
3 |
4LL | let a = Some("...".to_owned());
1b1a35ee 5 | - move occurs because `a` has type `Option<String>`, which does not implement the `Copy` trait
416331ca
XL
6LL | let b = match a {
7LL | Some(_) if { drop(a); false } => None,
8 | - value moved here
9LL | x => x,
10 | ^ value used here after move
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0382`.