]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/ice-6153.rs
Merge remote-tracking branch 'upstream/master' into rustup
[rust.git] / tests / ui / crashes / ice-6153.rs
1 pub struct S<'a, 'e>(&'a str, &'e str);
2
3 pub type T<'a, 'e> = std::collections::HashMap<S<'a, 'e>, ()>;
4
5 impl<'e, 'a: 'e> S<'a, 'e> {
6     pub fn foo(_a: &str, _b: &str, _map: &T) {}
7 }
8
9 fn main() {}