Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit d64b5bb

Browse files
authored
Merge pull request #1533 from langston-barrett/109090
Add 109090
2 parents 9a45b07 + 715cee6 commit d64b5bb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: ices/109090.rs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#![feature(non_lifetime_binders)]
2+
3+
pub trait Bt {
4+
type C;
5+
}
6+
7+
pub struct A;
8+
9+
impl Bt for A {
10+
type C = A;
11+
}
12+
13+
pub fn oopsie<Bt>()
14+
where
15+
for<'a, B> <B::C as Bt<'a>>::Bt: Bt, {}
16+
17+
18+
fn main() {}

0 commit comments

Comments
 (0)