We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c3f17b commit 825477fCopy full SHA for 825477f
ices/81193.rs
@@ -0,0 +1,8 @@
1
+#![feature(associated_type_bounds)]
2
+trait A<'a, 'b> {}
3
+trait B<'a, 'b, 'c> {}
4
+fn err<'u, 'a, F>()
5
+where
6
+ for<'b> F: Iterator<Item: for<'c> B<'a, 'b, 'c> + for<'c> A<'a, 'c>>,
7
+{
8
+}
0 commit comments