rust/tests/ui/borrowck/issue-54597-reject-move-out...

21 lines
361 B
Rust

#![allow(dead_code)]
#[derive(Debug)]
struct Value;
impl Value {
fn as_array(&self) -> Option<&Vec<Value>> {
None
}
}
fn foo(val: Value) {
let _reviewers_original: Vec<Value> = match val.as_array() {
Some(array) => {
*array //~ ERROR cannot move out of `*array`
}
None => vec![]
};
}
fn main() { }