DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / 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() {}