rust/tests/ui/suggestions/option-content-move-from-tuple-match.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
215 B
Rust
Raw Normal View History

fn foo(a: &Option<String>, b: &Option<String>) {
match (a, b) {
//~^ ERROR cannot move out of a shared reference
(None, &c) => &c.unwrap(),
(&Some(ref c), _) => c,
};
}
fn main() {}