1▶#### Note: this error code is no longer emitted by the compiler.
2
3This error indicates that the bindings in a match arm would require a value to
· · ·
3▶This error indicates that the bindings in a match arm would require a value to
4be moved into more than one location, thus violating unique ownership. Code
5like the following is invalid as it requires the entire `Option<String>` to be
· · ·
15
16match x {
17▶ op_string @ Some(s) => {}, // error: use of moved value
18 None => {},
19}
· · ·
20```
21
22▶See also the error E0303.
23