rust-clippy/tests/run-pass/ice-2774.rs

28 lines
706 B
Rust
Raw Normal View History

use std::collections::HashSet;
// See https://github.com/rust-lang/rust-clippy/issues/2774
#[derive(Eq, PartialEq, Debug, Hash)]
pub struct Bar {
foo: Foo,
}
#[derive(Eq, PartialEq, Debug, Hash)]
pub struct Foo {}
2018-07-30 09:33:44 +00:00
#[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>) {
let mut foos = HashSet::new();
2018-12-09 22:26:16 +00:00
foos.extend(bars.iter().map(|b| &b.foo));
}
2018-07-30 09:33:44 +00:00
#[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();
2018-12-09 22:26:16 +00:00
foos.extend(bars.iter().map(|b| &b.foo));
}
fn main() {}