blob: 92943f6c9ecb2b1e9e69b0c38a2392a85048d9d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// run-rustfix
// Regression test for #51415: match default bindings were failing to
// see the "move out" implied by `&s` below.
fn main() {
let a = vec![String::from("a")];
let opt = a.iter().enumerate().find(|(_, &ref s)| {
//~^ ERROR cannot move out
*s == String::from("d")
}).map(|(i, _)| i);
println!("{:?}", opt);
}
|