``` fn main() { let c: std::collections::HashMap<i32, String> = Default::default(); for (_, b) in c { println!("{:?}", b); } } ``` The lint suggests to use `values()` but AFAIK there is no consuming alternative to `values()`. (And if it exists, the message should mention it.) Similar issue: #709.