]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/nested-return-type3.rs
Auto merge of #95604 - nbdd0121:used2, r=petrochenkov
[rust.git] / src / test / ui / impl-trait / nested-return-type3.rs
1 // check-pass
2
3 trait Duh {}
4
5 impl Duh for i32 {}
6
7 trait Trait {
8     type Assoc: Duh;
9 }
10
11 impl<F: Duh> Trait for F {
12     type Assoc = F;
13 }
14
15 fn foo() -> impl Trait<Assoc = impl Send> {
16     42
17 }
18
19 fn main() {
20 }