summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-types/issue-63591.rs
blob: d07c123499892352b4fc316dc48fedccf2184480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// check-pass

#![feature(associated_type_bounds)]
#![feature(impl_trait_in_assoc_type)]

fn main() {}

trait Bar {
    type Assoc;
}

trait Thing {
    type Out;
    fn func() -> Self::Out;
}

struct AssocIsCopy;
impl Bar for AssocIsCopy {
    type Assoc = u8;
}

impl Thing for AssocIsCopy {
    type Out = impl Bar<Assoc: Copy>;

    fn func() -> Self::Out {
        AssocIsCopy
    }
}