mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
11 lines
333 B
Rust
11 lines
333 B
Rust
//@ run-rustfix
|
|
//! diagnostic test for #132806: make sure the suggestion to bind by-reference in patterns doesn't
|
|
//! erroneously remove the wrong `&`
|
|
|
|
use std::collections::HashMap;
|
|
|
|
fn main() {
|
|
let _ = HashMap::<String, i32>::new().iter().filter(|&(&_k, &_v)| { true });
|
|
//~^ ERROR cannot move out of a shared reference
|
|
}
|