We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf81975 commit 52e650aCopy full SHA for 52e650a
tests/ui/crashes/ice-6153.rs
@@ -0,0 +1,9 @@
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() {}
0 commit comments