Skip to content

Commit 825477f

Browse files
committed
Add 81193
Issue: rust-lang/rust#81193
1 parent 5c3f17b commit 825477f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ices/81193.rs

+8
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)