rust/tests/ui/crashes/ice-2774.rs

30 lines
697 B
Rust
Raw Normal View History

// run-pass
use std::collections::HashSet;
2019-01-30 19:15:29 -06:00
// See rust-lang/rust-clippy#2774.
#[derive(Eq, PartialEq, Debug, Hash)]
pub struct Bar {
foo: Foo,
}
#[derive(Eq, PartialEq, Debug, Hash)]
pub struct Foo {}
2018-07-30 04:33:44 -05:00
#[allow(clippy::implicit_hasher)]
2019-01-30 19:15:29 -06:00
// 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 16:26:16 -06:00
foos.extend(bars.iter().map(|b| &b.foo));
}
2018-07-30 04:33:44 -05:00
#[allow(clippy::implicit_hasher)]
2019-01-30 19:15:29 -06:00
// 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 16:26:16 -06:00
foos.extend(bars.iter().map(|b| &b.foo));
}
fn main() {}