4 matches across 1 files for error lang:Markdown lang:Markdown path:compiler/rustc_error_codes/src/error_codes/E0007.md
snippet_mode: grep · sorted by relevance
compiler/rustc_error_codes/src/error_codes/E0007.md MARKDOWN 4 matches view file →
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
· · ·
3This 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
22See also the error E0303.
23
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.