Skip to content

Commit ba896d9

Browse files
committed
Add 86719
Issue: rust-lang/rust#86719
1 parent fe569c4 commit ba896d9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ices/86719.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
trait Bar {
2+
type E;
3+
}
4+
impl<S> Bar for S {
5+
type E = impl ;
6+
fn foo() -> Self::E {
7+
|_| true
8+
}
9+
}

0 commit comments

Comments
 (0)