2018-05-18 20:56:25 +00:00
|
|
|
use std::collections::HashSet;
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
// See rust-lang/rust-clippy#2774.
|
2018-05-18 20:56:25 +00:00
|
|
|
|
|
|
|
#[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)]
|
2019-01-31 01:15:29 +00:00
|
|
|
// This should not cause a "cannot relate bound region" ICE.
|
2018-05-18 20:56:25 +00:00
|
|
|
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-05-18 20:56:25 +00:00
|
|
|
}
|
|
|
|
|
2018-07-30 09:33:44 +00:00
|
|
|
#[allow(clippy::implicit_hasher)]
|
2019-01-31 01:15:29 +00:00
|
|
|
// Also, this should not cause a "cannot relate bound region" ICE.
|
2018-05-18 20:56:25 +00:00
|
|
|
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));
|
2018-05-18 20:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|