mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
29 lines
823 B
Rust
29 lines
823 B
Rust
use std::collections::HashSet;
|
|
|
|
// See rust-lang/rust-clippy#2774.
|
|
|
|
#[derive(Eq, PartialEq, Debug, Hash)]
|
|
pub struct Bar {
|
|
foo: Foo,
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Debug, Hash)]
|
|
pub struct Foo;
|
|
|
|
#[allow(clippy::implicit_hasher)]
|
|
// This should not cause a "cannot relate bound region" ICE.
|
|
pub fn add_barfoos_to_foos<'a>(bars: &HashSet<&'a Bar>) {
|
|
//~^ ERROR: the following explicit lifetimes could be elided: 'a
|
|
//~| NOTE: `-D clippy::needless-lifetimes` implied by `-D warnings`
|
|
let mut foos = HashSet::new();
|
|
foos.extend(bars.iter().map(|b| &b.foo));
|
|
}
|
|
|
|
#[allow(clippy::implicit_hasher)]
|
|
// Also, this should not cause a "cannot relate bound region" ICE.
|
|
pub fn add_barfoos_to_foos2(bars: &HashSet<&Bar>) {
|
|
let mut foos = HashSet::new();
|
|
foos.extend(bars.iter().map(|b| &b.foo));
|
|
}
|
|
|
|
fn main() {}
|