summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/bugs/issue-80626.rs
blob: d6e18010f3b271a42810d91a153c53695950cf7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

trait Allocator {
    type Allocated<T>;
}

enum LinkedList<A: Allocator> {
    Head,
    Next(A::Allocated<Self>),
}

fn main() {}