DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / generic-associated-types / bugs / issue-80626.rs
123456789101112
//@ check-pass trait Allocator { type Allocated<T>; } enum LinkedList<A: Allocator> { Head, Next(A::Allocated<Self>), } fn main() {}